From 387f474b0953f093c9160a311860832bc499963f Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 16 Nov 2021 09:46:22 -0500 Subject: [PATCH] Fix setup password. Fixes #478 (#484) --- src/shared/components/home/setup.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/shared/components/home/setup.tsx b/src/shared/components/home/setup.tsx index eef59bd..5254699 100644 --- a/src/shared/components/home/setup.tsx +++ b/src/shared/components/home/setup.tsx @@ -122,6 +122,8 @@ export class Setup extends Component { onInput={linkEvent(this, this.handleRegisterPasswordChange)} class="form-control" required + autoComplete="new-password" + minLength={10} maxLength={60} /> @@ -138,6 +140,8 @@ export class Setup extends Component { onInput={linkEvent(this, this.handleRegisterPasswordVerifyChange)} class="form-control" required + autoComplete="new-password" + minLength={10} maxLength={60} /> -- 2.44.1