mirror of
https://github.com/bitwarden/browser
synced 2025-01-09 08:56:05 +01:00
Fix missing title for ssh key dialog (#12317)
This commit is contained in:
parent
ba4d7ea799
commit
e8976556d8
@ -428,6 +428,9 @@ export class VaultItemDialogComponent implements OnInit, OnDestroy {
|
|||||||
case CipherType.SecureNote:
|
case CipherType.SecureNote:
|
||||||
this.title = this.i18nService.t(partOne, this.i18nService.t("note").toLowerCase());
|
this.title = this.i18nService.t(partOne, this.i18nService.t("note").toLowerCase());
|
||||||
break;
|
break;
|
||||||
|
case CipherType.SshKey:
|
||||||
|
this.title = this.i18nService.t(partOne, this.i18nService.t("typeSshKey").toLowerCase());
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user