aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/list
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-04-07 13:49:27 +0200
committerSascha <GlancingMind@outlook.com>2021-04-07 13:50:52 +0200
commitccdaa16052a1da7ea5c87fc2104363377df98b95 (patch)
tree01d1a61d5f775eaef585130be15ea8a26d32ede4 /webui/src/pages/list
parenta92b99876d9fbe6e9c3dae0f79fa8262410361cf (diff)
downloadgit-bug-ccdaa16052a1da7ea5c87fc2104363377df98b95.tar.gz
Support filtering by multiple selected authors
Diffstat (limited to 'webui/src/pages/list')
-rw-r--r--webui/src/pages/list/FilterToolbar.tsx2
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