diff options
author | Sascha <GlancingMind@outlook.com> | 2021-04-07 13:49:27 +0200 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-04-07 13:50:52 +0200 |
commit | ccdaa16052a1da7ea5c87fc2104363377df98b95 (patch) | |
tree | 01d1a61d5f775eaef585130be15ea8a26d32ede4 | |
parent | a92b99876d9fbe6e9c3dae0f79fa8262410361cf (diff) | |
download | git-bug-ccdaa16052a1da7ea5c87fc2104363377df98b95.tar.gz |
Support filtering by multiple selected authors
-rw-r--r-- | webui/src/pages/list/FilterToolbar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/pages/list/FilterToolbar.tsx b/webui/src/pages/list/FilterToolbar.tsx index cfb93dc2..979bf530 100644 --- a/webui/src/pages/list/FilterToolbar.tsx +++ b/webui/src/pages/list/FilterToolbar.tsx @@ -165,7 +165,7 @@ function FilterToolbar({ query, queryLocation }: Props) { <FilterDropdown dropdown={identities} itemActive={(key) => hasValue('author', key)} - to={(key) => pipe(toggleParam('author', key), loc)(params)} + to={(key) => pipe(toggleOrAddParam('author', key), loc)(params)} hasFilter > Author |