diff options
Diffstat (limited to 'webui/src/bug/SetTitle.js')
-rw-r--r-- | webui/src/bug/SetTitle.js | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/webui/src/bug/SetTitle.js b/webui/src/bug/SetTitle.js new file mode 100644 index 00000000..b6bb8b70 --- /dev/null +++ b/webui/src/bug/SetTitle.js @@ -0,0 +1,43 @@ +import { withStyles } from '@material-ui/core/styles' +import gql from 'graphql-tag' +import React from 'react' +import Author from '../Author' +import Date from '../Date' + +const styles = theme => ({ + main: { + ...theme.typography.body2 + }, + bold: { + fontWeight: 'bold' + } +}) + +const SetTitle = ({op, classes}) => { + return ( + <div className={classes.main}> + <Author author={op.author} bold /> + <span> changed the title from </span> + <span className={classes.bold}>{op.was}</span> + <span> to </span> + <span className={classes.bold}>{op.title}</span> + <Date date={op.date} /> + </div> + ) +} + +SetTitle.fragment = gql` + fragment SetTitle on Operation { + ... on SetTitleOperation { + date + author { + name + email + } + title + was + } + } +` + +export default withStyles(styles)(SetTitle) |