Skip to content

Commit 32c0873

Browse files
authored
Merge pull request #33 from valonhaliti/master
Make search for tables case insensitive
2 parents 243f2aa + 195d952 commit 32c0873

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)