aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/CommentForm.tsx
diff options
context:
space:
mode:
authorLena <lena.becker-3@mni.thm.de>2021-02-28 20:54:17 +0100
committerSascha <GlancingMind@outlook.com>2021-03-15 16:35:14 +0100
commit16b176f9bf40a5fd6fb832f8858ec389826752a5 (patch)
tree6bdccfe6482cc5d1fe01a3ad71add6b7d51b3523 /webui/src/pages/bug/CommentForm.tsx
parent4dcc6f67b37bf756c7afb7e40f700a838906113b (diff)
downloadgit-bug-16b176f9bf40a5fd6fb832f8858ec389826752a5.tar.gz
Make backbutton sticky #10
Diffstat (limited to 'webui/src/pages/bug/CommentForm.tsx')
-rw-r--r--webui/src/pages/bug/CommentForm.tsx10
1 files changed, 0 insertions, 10 deletions
diff --git a/webui/src/pages/bug/CommentForm.tsx b/webui/src/pages/bug/CommentForm.tsx
index 6ec9bf2a..e53c7ddd 100644
--- a/webui/src/pages/bug/CommentForm.tsx
+++ b/webui/src/pages/bug/CommentForm.tsx
@@ -39,13 +39,6 @@ const useStyles = makeStyles<Theme, StyleProps>((theme) => ({
backgroundColor: '#2ea44f',
},
},
- backButton: {
- backgroundColor: '#574142',
- color: '#fff',
- '&:hover': {
- backgroundColor: '#610B0B',
- },
- },
}));
type Props = {
@@ -109,9 +102,6 @@ function CommentForm({ bug }: Props) {
onChange={(comment: string) => setIssueComment(comment)}
/>
<div className={classes.actions}>
- <Button className={classes.backButton} variant="contained" href="/">
- Back to List
- </Button>
{bug.status === 'OPEN' ? getCloseButton() : getReopenButton()}
<Button
className={classes.greenButton}