diff --git a/tabby-settings/src/components/profilesSettingsTab.component.ts b/tabby-settings/src/components/profilesSettingsTab.component.ts index 5c187a01..961fd80f 100644 --- a/tabby-settings/src/components/profilesSettingsTab.component.ts +++ b/tabby-settings/src/components/profilesSettingsTab.component.ts @@ -211,7 +211,7 @@ export class ProfilesSettingsTabComponent extends BaseComponent { } isProfileVisible (profile: PartialProfile): boolean { - return !this.filter || profile.name.toLowerCase().includes(this.filter.toLowerCase()) + return !this.filter || (profile.name + '$' + (this.getDescription(profile) ?? '')).toLowerCase().includes(this.filter.toLowerCase()) } iconIsSVG (icon?: string): boolean {