+
+ {{ "importError" | i18n }}
+
+
+
+ {{ "resolveTheErrorsBelowAndTryAgain" | i18n }}
+
+
+
+ {{ "name" | i18n }} |
+ {{ "description" | i18n }} |
+
+
+
+
+ {{ r.type }} |
+ {{ r.message }} |
+
+
+
+
+
+
+
+
+
diff --git a/apps/web/src/app/tools/import-export/dialog/import-error-dialog.component.ts b/apps/web/src/app/tools/import-export/dialog/import-error-dialog.component.ts
new file mode 100644
index 0000000000..abb68cf53b
--- /dev/null
+++ b/apps/web/src/app/tools/import-export/dialog/import-error-dialog.component.ts
@@ -0,0 +1,33 @@
+import { DialogRef, DIALOG_DATA } from "@angular/cdk/dialog";
+import { Component, Inject, OnInit } from "@angular/core";
+
+import { TableDataSource } from "@bitwarden/components";
+
+export interface ErrorListItem {
+ type: string;
+ message: string;
+}
+
+@Component({
+ selector: "app-import-error-dialog",
+ templateUrl: "./import-error-dialog.component.html",
+})
+export class ImportErrorDialogComponent implements OnInit {
+ protected dataSource = new TableDataSource