Skip to content

Commit

Permalink
検索をケースインセンシティブに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
takusea committed Dec 7, 2024
1 parent 08df2b9 commit 740fe18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Dialog/HotkeySettingDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@
v-for="hotkeySetting in hotkeySettings.filter(
(hotkeySetting) =>
hotkeySetting.action.includes(hotkeyFilter) ||
hotkeySetting.combination.includes(hotkeyFilter),
hotkeySetting.combination
.toLocaleLowerCase()
.includes(hotkeyFilter.toLocaleLowerCase()),
)"
:key="hotkeySetting.action"
class="table-row"
Expand Down

0 comments on commit 740fe18

Please sign in to comment.