aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-17 13:17:44 +0100
committerMichael Muré <batolettre@gmail.com>2020-02-17 13:17:44 +0100
commit218d460590a29fe84b94c024712a095e5f82f917 (patch)
tree512809ad930cf80f222a75c07bb19c25663aa5ca /webui/src
parentafd22acd5ddb6c92e77b7660ef7ee65f4192d7ae (diff)
downloadgit-bug-218d460590a29fe84b94c024712a095e5f82f917.tar.gz
webui: style SetStatus
Diffstat (limited to 'webui/src')
-rw-r--r--webui/src/pages/bug/SetStatus.tsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/webui/src/pages/bug/SetStatus.tsx b/webui/src/pages/bug/SetStatus.tsx
index 413f764d..56fde6f9 100644
--- a/webui/src/pages/bug/SetStatus.tsx
+++ b/webui/src/pages/bug/SetStatus.tsx
@@ -6,12 +6,16 @@ import Author from 'src/components/Author';
import Date from 'src/components/Date';
import { SetStatusFragment } from './SetStatusFragment.generated';
+import { Status } from '../../gqlTypes'
const useStyles = makeStyles(theme => ({
main: {
...theme.typography.body2,
marginLeft: theme.spacing(1) + 40,
},
+ author: {
+ fontWeight: 'bold',
+ },
}));
type Props = {
@@ -20,10 +24,12 @@ type Props = {
function SetStatus({ op }: Props) {
const classes = useStyles();
+ const status = { [Status.Open]: 'reopened', [Status.Closed]: 'closed' }[op.status]
+
return (
<div className={classes.main}>
- <Author author={op.author} bold />
- <span> {op.status.toLowerCase()} this</span>
+ <Author author={op.author} className={classes.author} />
+ <span> {status} this </span>
<Date date={op.date} />
</div>
);