mirror of
https://github.com/Eugeny/tabby
synced 2024-12-13 14:52:45 +00:00
wip fix(settings): newProfile unresolve group name
This commit is contained in:
parent
b751e10082
commit
a0804cc564
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
})),
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue