Skip to content

Commit

Permalink
fix(ssh): resolve group name in getJumpHostLabel
Browse files Browse the repository at this point in the history
  • Loading branch information
Clem-Fern committed Nov 21, 2023
1 parent 3794081 commit f80db81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabby-ssh/src/components/sshProfileSettings.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class SSHProfileSettingsComponent {
}

getJumpHostLabel (p: PartialProfile<SSHProfile>) {
return p.group ? `${p.group} / ${p.name}` : p.name
return p.group ? `${this.profilesService.resolveProfileGroupName(p.group)} / ${p.name}` : p.name
}

async setPassword () {
Expand Down

0 comments on commit f80db81

Please sign in to comment.