Skip to content
Snippets Groups Projects
Unverified Commit 218d4605 authored by Michael Muré's avatar Michael Muré
Browse files

webui: style SetStatus

parent afd22acd
Branches
Tags
No related merge requests found
...@@ -161,7 +161,7 @@ func (gi *githubImporter) ensureIssue(repo *cache.RepoCache, issue issueTimeline ...@@ -161,7 +161,7 @@ func (gi *githubImporter) ensureIssue(repo *cache.RepoCache, issue issueTimeline
b, _, err = repo.NewBugRaw( b, _, err = repo.NewBugRaw(
author, author,
issue.CreatedAt.Unix(), issue.CreatedAt.Unix(),
issue.Title, issue.Title, // TODO: this is the *current* title, not the original one
cleanText, cleanText,
nil, nil,
map[string]string{ map[string]string{
... ...
......
...@@ -6,12 +6,16 @@ import Author from 'src/components/Author'; ...@@ -6,12 +6,16 @@ import Author from 'src/components/Author';
import Date from 'src/components/Date'; import Date from 'src/components/Date';
import { SetStatusFragment } from './SetStatusFragment.generated'; import { SetStatusFragment } from './SetStatusFragment.generated';
import { Status } from '../../gqlTypes'
const useStyles = makeStyles(theme => ({ const useStyles = makeStyles(theme => ({
main: { main: {
...theme.typography.body2, ...theme.typography.body2,
marginLeft: theme.spacing(1) + 40, marginLeft: theme.spacing(1) + 40,
}, },
author: {
fontWeight: 'bold',
},
})); }));
type Props = { type Props = {
...@@ -20,10 +24,12 @@ type Props = { ...@@ -20,10 +24,12 @@ type Props = {
function SetStatus({ op }: Props) { function SetStatus({ op }: Props) {
const classes = useStyles(); const classes = useStyles();
const status = { [Status.Open]: 'reopened', [Status.Closed]: 'closed' }[op.status]
return ( return (
<div className={classes.main}> <div className={classes.main}>
<Author author={op.author} bold /> <Author author={op.author} className={classes.author} />
<span> {op.status.toLowerCase()} this</span> <span> {status} this </span>
<Date date={op.date} /> <Date date={op.date} />
</div> </div>
); );
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment