1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 13:13:59 +03:00

fix(ssh): resolve group name in getJumpHostLabel

This commit is contained in:
Clem Fern 2023-11-21 21:45:42 +01:00
parent 3794081cef
commit f80db81857

View File

@ -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 () {