Skip to content

Commit

Permalink
fix(rules): fix rules search (#1267) (#1272)
Browse files Browse the repository at this point in the history
  • Loading branch information
Plutonium141 authored Dec 28, 2024
1 parent 4bf6315 commit 30f9bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Rules.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default () => {
const filteredRules = createMemo(() =>
globalFilter()
? matchSorter(rules(), globalFilter(), {
keys: ['type', 'payload', 'type'] as (keyof Rule)[],
keys: ['type', 'payload', 'proxy'] as (keyof Rule)[],
})
: rules(),
)
Expand Down

0 comments on commit 30f9bb4

Please sign in to comment.