diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-16 01:35:51 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-16 02:14:58 +0100 |
commit | c4f5cae4a44330ae0a8fb063768c4181fd0e83c1 (patch) | |
tree | a7ebc891cdb92d05fb82bfe68f1a3d4dfe3c8a37 /webui/src/pages/list/ListQuery.tsx | |
parent | d052ecf67105b5a65511a335e4c3112c74a662a6 (diff) | |
download | git-bug-c4f5cae4a44330ae0a8fb063768c4181fd0e83c1.tar.gz |
webui: list by default only open bugs
Diffstat (limited to 'webui/src/pages/list/ListQuery.tsx')
-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 6858b6c6..8cf68693 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.get('q') || ''; + const query = params.get('q') || 'status:open'; const [input, setInput] = useState(query); |