From f80db81857ec4f92c370f52dea5011baa34f240b Mon Sep 17 00:00:00 2001 From: Clem Fern Date: Tue, 21 Nov 2023 21:45:42 +0100 Subject: [PATCH] fix(ssh): resolve group name in getJumpHostLabel --- tabby-ssh/src/components/sshProfileSettings.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-ssh/src/components/sshProfileSettings.component.ts b/tabby-ssh/src/components/sshProfileSettings.component.ts index a446762c1a..105c29fc75 100644 --- a/tabby-ssh/src/components/sshProfileSettings.component.ts +++ b/tabby-ssh/src/components/sshProfileSettings.component.ts @@ -67,7 +67,7 @@ export class SSHProfileSettingsComponent { } getJumpHostLabel (p: PartialProfile) { - return p.group ? `${p.group} / ${p.name}` : p.name + return p.group ? `${this.profilesService.resolveProfileGroupName(p.group)} / ${p.name}` : p.name } async setPassword () {