aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug
diff options
context:
space:
mode:
authorLena <lena.becker-3@mni.thm.de>2021-03-15 14:52:06 +0100
committerSascha <GlancingMind@outlook.com>2021-03-15 16:35:14 +0100
commitac17596c1ab94b6426bb5b48e39ed0dd9038303e (patch)
tree9c04d7844dbd0ee848bb0f3e024c48f6a75460e9 /webui/src/pages/bug
parentcd02d80ca2458be40d64d2e945670e0aeeb30fcc (diff)
downloadgit-bug-ac17596c1ab94b6426bb5b48e39ed0dd9038303e.tar.gz
Refactor BackToListButton #10
Diffstat (limited to 'webui/src/pages/bug')
-rw-r--r--webui/src/pages/bug/BackButton.tsx36
-rw-r--r--webui/src/pages/bug/Bug.tsx4
2 files changed, 2 insertions, 38 deletions
diff --git a/webui/src/pages/bug/BackButton.tsx b/webui/src/pages/bug/BackButton.tsx
deleted file mode 100644
index 4c73dd0a..00000000
--- a/webui/src/pages/bug/BackButton.tsx
+++ /dev/null
@@ -1,36 +0,0 @@
-import React from 'react';
-
-import Button from '@material-ui/core/Button';
-import { makeStyles } from '@material-ui/core/styles';
-import ArrowBackIcon from '@material-ui/icons/ArrowBack';
-
-const useStyles = makeStyles((theme) => ({
- backButton: {
- position: 'sticky',
- top: '80px',
- backgroundColor: theme.palette.primary.dark,
- color: theme.palette.primary.contrastText,
- '&:hover': {
- backgroundColor: theme.palette.primary.main,
- color: theme.palette.primary.contrastText,
- },
- },
-}));
-
-function BackButton() {
- const classes = useStyles();
-
- return (
- <Button
- variant="contained"
- className={classes.backButton}
- aria-label="back to issue list"
- href="/"
- >
- <ArrowBackIcon />
- Back to List
- </Button>
- );
-}
-
-export default BackButton;
diff --git a/webui/src/pages/bug/Bug.tsx b/webui/src/pages/bug/Bug.tsx
index aa6247f2..9ce2f6a6 100644
--- a/webui/src/pages/bug/Bug.tsx
+++ b/webui/src/pages/bug/Bug.tsx
@@ -2,11 +2,11 @@ import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
+import BackToListButton from '../../components/BackToListButton/BackToListButton';
import BugTitleForm from 'src/components/BugTitleForm/BugTitleForm';
import IfLoggedIn from 'src/components/IfLoggedIn/IfLoggedIn';
import Label from 'src/components/Label';
-import BackButton from './BackButton';
import { BugFragment } from './Bug.generated';
import CommentForm from './CommentForm';
import TimelineQuery from './TimelineQuery';
@@ -88,7 +88,7 @@ function Bug({ bug }: Props) {
</div>
<div className={classes.container}>
<div className={classes.leftSidebar}>
- <BackButton />
+ <BackToListButton />
</div>
<div className={classes.timeline}>
<TimelineQuery id={bug.id} />