Skip to content

Commit e74767b

Browse files
committed
fix: Update issue reporting link with body
The "Bug ..." title prefix didn't seem very useful. We have labels to report a bug, and the version is rarely at play, since we don't want to play a game of regression whack-a-mole. This updates it to be mostly empty, which seems fine until we have a problem.
1 parent 00c5116 commit e74767b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/src/components/Footer/Footer.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ export interface FooterProps {
1919
export const Footer: React.FC<FooterProps> = ({ buildInfo }) => {
2020
const styles = useFooterStyles()
2121

22-
const githubUrl = `https://github.com/coder/coder/issues/new?labels=bug,needs+grooming&title=Bug+in+${buildInfo?.version}:&template=external_bug_report.md`
22+
const githubUrl = `https://github.com/coder/coder/issues/new?labels=needs+grooming&body=${encodeURIComponent(`Version: [\`${buildInfo?.version}\`](${buildInfo?.external_url})
23+
24+
<!--- Ask a question or leave feedback! -->`)}`
2325

2426
return (
2527
<div className={styles.root}>

0 commit comments

Comments
 (0)