1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-03-21 15:09:40 +01:00

Fix import dialog ssh key i18n (#12049)

This commit is contained in:
Bernd Schoolmann 2024-11-19 05:16:42 -08:00 committed by GitHub
parent 33f7643e15
commit 2ec7bbcd13
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,7 +75,7 @@ export class ImportSuccessDialogComponent implements OnInit {
list.push({ icon: "sticky-note", type: "typeSecureNote", count: secureNotes });
}
if (sshKeys > 0) {
list.push({ icon: "key", type: "typeSSHKey", count: sshKeys });
list.push({ icon: "key", type: "typeSshKey", count: sshKeys });
}
if (this.data.folders.length > 0) {
list.push({ icon: "folder", type: "folders", count: this.data.folders.length });