From 424d5a953887329264ce53ce68d7d9db649bc01a Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Mon, 1 Sep 2025 21:47:19 +0000 Subject: [PATCH] fix: change password submit button not working (addresses #396) - Changed button type from 'button' to 'submit' so it actually submits the form - This was the root cause - the button looked clickable but had no onClick handler - Now the form properly submits when clicking Change Password --- .../src/components/Settings/ChangePasswordModal.tsx | 2 +- internal/config/config.go | 3 +++ scripts/hot-dev.sh | 8 ++++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/frontend-modern/src/components/Settings/ChangePasswordModal.tsx b/frontend-modern/src/components/Settings/ChangePasswordModal.tsx index b799ea566..163fb0bf9 100644 --- a/frontend-modern/src/components/Settings/ChangePasswordModal.tsx +++ b/frontend-modern/src/components/Settings/ChangePasswordModal.tsx @@ -194,7 +194,7 @@ export const ChangePasswordModal: Component = (props) > Cancel -