1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Display max project error on import (#6211)

This commit is contained in:
Thomas Avery
2023-09-07 17:51:16 -05:00
committed by GitHub
parent 5440e372f6
commit a21892103a

View File

@@ -8,6 +8,7 @@ import { FileDownloadService } from "@bitwarden/common/platform/abstractions/fil
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { LogService } from "@bitwarden/common/platform/abstractions/log.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { Utils } from "@bitwarden/common/platform/misc/utils";
import { DialogService } from "@bitwarden/components";
import {
@@ -73,6 +74,13 @@ export class SecretsManagerImportComponent implements OnInit, OnDestroy {
if (error?.lines?.length > 0) {
this.openImportErrorDialog(error);
return;
} else if (!Utils.isNullOrWhitespace(error?.message)) {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
error.message
);
return;
} else if (error != null) {
this.platformUtilsService.showToast(
"error",