1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-10-26 04:31:02 +03:00

wip fix(settings): newProfile unresolve group name

This commit is contained in:
Clem Fern 2023-07-23 22:11:01 +02:00
parent b751e10082
commit a0804cc564

View File

@ -60,7 +60,7 @@ export class ProfilesSettingsTabComponent extends BaseComponent {
profiles.map(p => ({
icon: p.icon,
description: this.profilesService.getDescription(p) ?? undefined,
name: p.group ? `${p.group} / ${p.name}` : p.name,
name: p.group ? `${this.profilesService.resolveProfileGroupName(p.group)} / ${p.name}` : p.name,
result: p,
})),
)