aboutsummaryrefslogtreecommitdiffstats
path: root/webui
diff options
context:
space:
mode:
authorludovicm67 <ludovicmuller1@gmail.com>2020-02-22 19:25:37 +0100
committerludovicm67 <ludovicmuller1@gmail.com>2020-02-22 19:25:37 +0100
commitf96484391ae817a18f503b5c31cd3bd2211553df (patch)
tree1d5db85021d2410c6b9facf65053996f307075b9 /webui
parent218d460590a29fe84b94c024712a095e5f82f917 (diff)
downloadgit-bug-f96484391ae817a18f503b5c31cd3bd2211553df.tar.gz
webui: run linter fix
Diffstat (limited to 'webui')
-rw-r--r--webui/src/components/Date.tsx4
-rw-r--r--webui/src/pages/bug/SetStatus.tsx6
-rw-r--r--webui/src/pages/list/ListQuery.tsx2
3 files changed, 8 insertions, 4 deletions
diff --git a/webui/src/components/Date.tsx b/webui/src/components/Date.tsx
index 8438b801..146a3496 100644
--- a/webui/src/components/Date.tsx
+++ b/webui/src/components/Date.tsx
@@ -11,7 +11,9 @@ const WEEK = 7 * DAY;
type Props = { date: string };
const Date = ({ date }: Props) => (
<Tooltip title={moment(date).format('LLLL')}>
- <span>on <Moment date={date} format='ll' fromNowDuring={WEEK} /></span>
+ <span>
+ on <Moment date={date} format="ll" fromNowDuring={WEEK} />
+ </span>
</Tooltip>
);
diff --git a/webui/src/pages/bug/SetStatus.tsx b/webui/src/pages/bug/SetStatus.tsx
index 56fde6f9..e9674424 100644
--- a/webui/src/pages/bug/SetStatus.tsx
+++ b/webui/src/pages/bug/SetStatus.tsx
@@ -2,11 +2,11 @@ import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
+import { Status } from '../../gqlTypes';
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: {
@@ -24,7 +24,9 @@ type Props = {
function SetStatus({ op }: Props) {
const classes = useStyles();
- const status = { [Status.Open]: 'reopened', [Status.Closed]: 'closed' }[op.status]
+ const status = { [Status.Open]: 'reopened', [Status.Closed]: 'closed' }[
+ op.status
+ ];
return (
<div className={classes.main}>
diff --git a/webui/src/pages/list/ListQuery.tsx b/webui/src/pages/list/ListQuery.tsx
index a0db0348..2d8c698a 100644
--- a/webui/src/pages/list/ListQuery.tsx
+++ b/webui/src/pages/list/ListQuery.tsx
@@ -164,7 +164,7 @@ function ListQuery() {
const location = useLocation();
const history = useHistory();
const params = new URLSearchParams(location.search);
- const query = params.has('q') ? (params.get('q') || '') : 'status:open';
+ const query = params.has('q') ? params.get('q') || '' : 'status:open';
const [input, setInput] = useState(query);