From 9c9cae84d65be87197a6b313cc6ef10c566dbaa3 Mon Sep 17 00:00:00 2001 From: Caleb Rogers Date: Tue, 7 Mar 2023 10:22:20 +0800 Subject: [PATCH] Initial setup login page should hide password input The form field for password `type` property wasn't set correctly, so passwords would display in browser as user typed them in --- ui/src/Pages/LoginPage/InitialSetupPage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/Pages/LoginPage/InitialSetupPage.tsx b/ui/src/Pages/LoginPage/InitialSetupPage.tsx index 9c51446..d2ef4eb 100644 --- a/ui/src/Pages/LoginPage/InitialSetupPage.tsx +++ b/ui/src/Pages/LoginPage/InitialSetupPage.tsx @@ -119,6 +119,7 @@ const InitialSetupPage = () => { ? 'Please enter a password' : undefined } + type="password" />