Skip to content

Commit

Permalink
fix: use proper exclude property
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric committed Mar 31, 2024
1 parent 9e4847e commit 9b40741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/src/components/forms/StatsModuleFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function StatsModuleFilter() {

const onExcludeChange = useCallback(
debounce((value: string) => {
router.setParams({ include: value || undefined });
router.setParams({ exclude: value || undefined });
}, 300),
[]
);
Expand Down

0 comments on commit 9b40741

Please sign in to comment.