Skip to content

Commit 195d952

Browse files
committed
Make search for tables case insensitive
1 parent 243f2aa commit 195d952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store/getters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { GetterTree } from 'vuex';
33

44
const filteredTables = (state: RootState) => {
55
return state.tables.filter((table: string) => {
6-
if (table.includes(state.filterText)) {
6+
if (table.toLowerCase().includes(state.filterText.toLowerCase())) {
77
return table;
88
}
99
});

0 commit comments

Comments
 (0)