Skip to content

Commit e8f3336

Browse files
authored
1 parent f8b4b60 commit e8f3336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/preferences/browser/settingsEditor2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ export class SettingsEditor2 extends EditorPane {
369369
if (this.viewState.idFilters?.has(setting.key)) {
370370
return true;
371371
}
372-
if (this.viewState.query?.includes(setting.key)) {
372+
if (this.viewState.query?.toLowerCase().includes(setting.key.toLowerCase())) {
373373
return true;
374374
}
375375
return false;

0 commit comments

Comments
 (0)