From acbd516529fde2dfccbf2f79bfff684a735da3db Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Tue, 18 Nov 2025 14:41:14 +0100 Subject: [PATCH] fix(setup): allow setup with ms oauth and no password Signed-off-by: Christoph Wurst --- src/components/AccountForm.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/AccountForm.vue b/src/components/AccountForm.vue index 11d7e1f90d..e9d4dd83dd 100644 --- a/src/components/AccountForm.vue +++ b/src/components/AccountForm.vue @@ -364,6 +364,7 @@ export default { return !this.emailAddress || !this.isValidEmail(this.emailAddress) || (!this.googleOauthUrl && !this.autoConfig.password) + || (!this.microsoftOauthUrl && !this.autoConfig.password) }, isDisabledManual() {