1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 11:13:44 +00:00

fixes to folder

This commit is contained in:
jaasen-livefront
2025-11-20 16:48:33 -08:00
parent 1d5da940a7
commit ab47d10038
4 changed files with 18 additions and 25 deletions

View File

@@ -58,7 +58,7 @@ export class FolderAddEditComponent implements OnInit {
async submit(): Promise<boolean> {
this.folder.name = this.formGroup.controls.name.value;
if (this.folder.name === "") {
if (this.folder.name == null || this.folder.name === "") {
this.toastService.showToast({
variant: "error",
title: this.i18nService.t("errorOccurred"),