We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 243f2aa + 195d952 commit 32c0873Copy full SHA for 32c0873
src/store/getters.ts
@@ -3,7 +3,7 @@ import { GetterTree } from 'vuex';
3
4
const filteredTables = (state: RootState) => {
5
return state.tables.filter((table: string) => {
6
- if (table.includes(state.filterText)) {
+ if (table.toLowerCase().includes(state.filterText.toLowerCase())) {
7
return table;
8
}
9
});
0 commit comments