mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-27 06:00:26 +08:00
fix(ssh): resolve group name in getJumpHostLabel
This commit is contained in:
parent
3794081cef
commit
f80db81857
@ -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 () {
|
||||
|
Loading…
Reference in New Issue
Block a user