webui: style SetStatus

Michael Muré created

Change summary

bridge/github/import.go           |  2 +-
webui/src/pages/bug/SetStatus.tsx | 10 ++++++++--
2 files changed, 9 insertions(+), 3 deletions(-)

Detailed changes

bridge/github/import.go 🔗

@@ -161,7 +161,7 @@ func (gi *githubImporter) ensureIssue(repo *cache.RepoCache, issue issueTimeline
 				b, _, err = repo.NewBugRaw(
 					author,
 					issue.CreatedAt.Unix(),
-					issue.Title,
+					issue.Title, // TODO: this is the *current* title, not the original one
 					cleanText,
 					nil,
 					map[string]string{

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>
   );