diff options
author | ludovicm67 <ludovicmuller1@gmail.com> | 2020-02-22 19:25:37 +0100 |
---|---|---|
committer | ludovicm67 <ludovicmuller1@gmail.com> | 2020-02-22 19:25:37 +0100 |
commit | f96484391ae817a18f503b5c31cd3bd2211553df (patch) | |
tree | 1d5db85021d2410c6b9facf65053996f307075b9 /webui/src/pages/list | |
parent | 218d460590a29fe84b94c024712a095e5f82f917 (diff) | |
download | git-bug-f96484391ae817a18f503b5c31cd3bd2211553df.tar.gz |
webui: run linter fix
Diffstat (limited to 'webui/src/pages/list')
-rw-r--r-- | webui/src/pages/list/ListQuery.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
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); |