From 9d078349ba00b4ad912e768dc5bc4bb5fdab4fee Mon Sep 17 00:00:00 2001 From: ArielLeyva Date: Sat, 3 Jan 2026 09:20:59 -0500 Subject: [PATCH] fix: hide "change password form" in noauth setting --- frontend/src/views/settings/Profile.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/views/settings/Profile.vue b/frontend/src/views/settings/Profile.vue index 328b2f1a..87382083 100644 --- a/frontend/src/views/settings/Profile.vue +++ b/frontend/src/views/settings/Profile.vue @@ -44,7 +44,7 @@ -
+
(false); const dateFormat = ref(false); const locale = ref(""); const aceEditorTheme = ref(""); +const isHidePasswordForm = ref(false); const passwordClass = computed(() => { const baseClass = "input input--block"; @@ -144,6 +145,7 @@ onMounted(async () => { layoutStore.loading = false; const { authMethod } = await settings.get(); isCurrentPasswordRequired.value = authMethod == "json"; + isHidePasswordForm.value = authMethod == "noauth"; return true; });