1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00: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

View File

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