mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-04 10:29:55 +00: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>) {
|
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 () {
|
async setPassword () {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user