From d1b80cffb81f6ca65e0515f14a5218f46b0d0945 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Sat, 14 Mar 2026 14:26:55 -0600 Subject: [PATCH] fix bug with non-fresh install --- web/projects/setup-wizard/src/app/pages/password.page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/projects/setup-wizard/src/app/pages/password.page.ts b/web/projects/setup-wizard/src/app/pages/password.page.ts index 6e8e7fcd7..3447cd427 100644 --- a/web/projects/setup-wizard/src/app/pages/password.page.ts +++ b/web/projects/setup-wizard/src/app/pages/password.page.ts @@ -175,7 +175,7 @@ export default class PasswordPage { Validators.maxLength(64), ]), confirm: new FormControl(''), - name: new FormControl('', [Validators.required]), + name: new FormControl('', this.isFresh ? [Validators.required] : []), }) readonly validator = (value: string) => (control: AbstractControl) =>