From 2ec7bbcd13e2b8c854b4db90744c3095fb3969d8 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Tue, 19 Nov 2024 05:16:42 -0800 Subject: [PATCH] Fix import dialog ssh key i18n (#12049) --- .../src/components/dialog/import-success-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/importer/src/components/dialog/import-success-dialog.component.ts b/libs/importer/src/components/dialog/import-success-dialog.component.ts index 75e0754423..90d5e60d3f 100644 --- a/libs/importer/src/components/dialog/import-success-dialog.component.ts +++ b/libs/importer/src/components/dialog/import-success-dialog.component.ts @@ -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 });