mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-16 01:19:58 +00:00
wip fix(settings): newProfile unresolve group name
This commit is contained in:
parent
b751e10082
commit
a0804cc564
@ -60,7 +60,7 @@ export class ProfilesSettingsTabComponent extends BaseComponent {
|
|||||||
profiles.map(p => ({
|
profiles.map(p => ({
|
||||||
icon: p.icon,
|
icon: p.icon,
|
||||||
description: this.profilesService.getDescription(p) ?? undefined,
|
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,
|
result: p,
|
||||||
})),
|
})),
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user