Skip to content

Commit

Permalink
fix: rules filter
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Apr 5, 2024
1 parent b42ee54 commit 6cdfeca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pages/configs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ debouncedWatch(
:key="idx"
>
<ConfigItem
v-show="!filters.filepath ? true : filteredConfigs.includes(config) && (!stateStorage.showSpecificOnly || config.files)"
v-show="filteredConfigs.includes(config) && (!filters.filepath || (!stateStorage.showSpecificOnly || config.files))"
v-model:open="opens[idx]"
:payload="payload"
:config="config"
Expand Down

0 comments on commit 6cdfeca

Please sign in to comment.