From 5edcb6c8bd430af4c26567d19c388d4c3e30b681 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 14 Aug 2018 02:06:02 +0200 Subject: webui: revamp the bug list --- webui/src/Comment.js | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) (limited to 'webui/src/Comment.js') diff --git a/webui/src/Comment.js b/webui/src/Comment.js index a4fd1b40..bc108083 100644 --- a/webui/src/Comment.js +++ b/webui/src/Comment.js @@ -1,20 +1,19 @@ -import React from "react"; -import gql from "graphql-tag"; -import { withStyles } from "@material-ui/core/styles"; - -import Avatar from "@material-ui/core/Avatar"; -import Card from "@material-ui/core/Card"; -import CardContent from "@material-ui/core/CardContent"; -import CardHeader from "@material-ui/core/CardHeader"; -import Typography from "@material-ui/core/Typography"; +import Avatar from '@material-ui/core/Avatar' +import Card from '@material-ui/core/Card' +import CardContent from '@material-ui/core/CardContent' +import CardHeader from '@material-ui/core/CardHeader' +import { withStyles } from '@material-ui/core/styles' +import Typography from '@material-ui/core/Typography' +import gql from 'graphql-tag' +import React from 'react' const styles = theme => ({ comment: { marginBottom: theme.spacing.unit } -}); +}) -const Comment = withStyles(styles)(({ comment, classes }) => ( +const Comment = withStyles(styles)(({comment, classes}) => ( ( {comment.message} -)); +)) Comment.fragment = gql` fragment Comment on Comment { @@ -39,6 +38,6 @@ Comment.fragment = gql` email } } -`; +` -export default withStyles(styles)(Comment); +export default withStyles(styles)(Comment) -- cgit