diff options
author | Quentin Gliech <quentingliech@gmail.com> | 2018-08-18 17:00:53 -0400 |
---|---|---|
committer | Sandhose <quentingliech@gmail.com> | 2018-08-19 23:14:45 +0200 |
commit | bb4ebed08c3f1b1a7ba9968ede75a07f1705d2df (patch) | |
tree | dd6998679330f1814001011c339ba7ee1da876d9 /webui/src/bug/Timeline.js | |
parent | 8575abf285d1dd71990b619fbdf3cd44dbc48e75 (diff) | |
download | git-bug-bb4ebed08c3f1b1a7ba9968ede75a07f1705d2df.tar.gz |
webui: Format everything with prettier
Diffstat (limited to 'webui/src/bug/Timeline.js')
-rw-r--r-- | webui/src/bug/Timeline.js | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/webui/src/bug/Timeline.js b/webui/src/bug/Timeline.js index a15409ab..d331d11d 100644 --- a/webui/src/bug/Timeline.js +++ b/webui/src/bug/Timeline.js @@ -1,52 +1,51 @@ -import { withStyles } from '@material-ui/core/styles' -import React from 'react' -import LabelChange from './LabelChange' -import Message from './Message' -import SetStatus from './SetStatus' -import SetTitle from './SetTitle' +import { withStyles } from '@material-ui/core/styles'; +import React from 'react'; +import LabelChange from './LabelChange'; +import Message from './Message'; +import SetStatus from './SetStatus'; +import SetTitle from './SetTitle'; const styles = theme => ({ main: { '& > *:not(:last-child)': { - marginBottom: 10 - } - } -}) + marginBottom: 10, + }, + }, +}); class Timeline extends React.Component { - props: { ops: Array, - fetchMore: (any) => any, + fetchMore: any => any, classes: any, - } + }; render() { - const {ops, classes} = this.props + const { ops, classes } = this.props; return ( <div className={classes.main}> - { ops.map((op, index) => { + {ops.map((op, index) => { switch (op.__typename) { case 'CreateOperation': - return <Message key={index} op={op}/> + return <Message key={index} op={op} />; case 'AddCommentOperation': - return <Message key={index} op={op}/> + return <Message key={index} op={op} />; case 'LabelChangeOperation': - return <LabelChange key={index} op={op}/> + return <LabelChange key={index} op={op} />; case 'SetTitleOperation': - return <SetTitle key={index} op={op}/> + return <SetTitle key={index} op={op} />; case 'SetStatusOperation': - return <SetStatus key={index} op={op}/> + return <SetStatus key={index} op={op} />; default: - console.log('unsupported operation type ' + op.__typename) - return null + console.log('unsupported operation type ' + op.__typename); + return null; } })} </div> - ) + ); } } -export default withStyles(styles)(Timeline) +export default withStyles(styles)(Timeline); |