Remove tag check, fixes #139886 (#146269)

This commit is contained in:
Raymond Zhao
2022-04-05 08:34:14 -07:00
committed by GitHub
parent 66c9155d93
commit 6c7f263edb
@@ -2234,13 +2234,6 @@ export class SettingsTreeFilter implements ITreeFilter<SettingsTreeElement> {
}
}
// @modified or tag
if (element instanceof SettingsTreeSettingElement && this.viewState.tagFilters) {
if (!element.matchesAllTags(this.viewState.tagFilters)) {
return false;
}
}
// Group with no visible children
if (element instanceof SettingsTreeGroupElement) {
if (typeof element.count === 'number') {