diff --git a/bridge/github/import.go b/bridge/github/import.go index ea0ccba32b9dc17fdbc1658c944af3fc2fd73e84..f7840217a2ab205314bfc242280bc97891768cb5 100644 --- a/bridge/github/import.go +++ b/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{ diff --git a/webui/src/pages/bug/SetStatus.tsx b/webui/src/pages/bug/SetStatus.tsx index 413f764de37781275259ac7d0242502e3391c41c..56fde6f9f8f512cba07f16e6ad86afc4fe439ab7 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 (