projects
/
lemmy-ui.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fac71d1
)
Fix setup password. Fixes #478 (#484)
author
Dessalines
<dessalines@users.noreply.github.com>
Tue, 16 Nov 2021 14:46:22 +0000
(09:46 -0500)
committer
GitHub
<noreply@github.com>
Tue, 16 Nov 2021 14:46:22 +0000
(09:46 -0500)
src/shared/components/home/setup.tsx
patch
|
blob
|
history
diff --git
a/src/shared/components/home/setup.tsx
b/src/shared/components/home/setup.tsx
index eef59bd00d8a3fe2f0ef4d0289b3dd0c5b119531..52546997c075515329f53701eadc516ab643b0f9 100644
(file)
--- a/
src/shared/components/home/setup.tsx
+++ b/
src/shared/components/home/setup.tsx
@@
-122,6
+122,8
@@
export class Setup extends Component<any, State> {
onInput={linkEvent(this, this.handleRegisterPasswordChange)}
class="form-control"
required
+ autoComplete="new-password"
+ minLength={10}
maxLength={60}
/>
</div>
@@
-138,6
+140,8
@@
export class Setup extends Component<any, State> {
onInput={linkEvent(this, this.handleRegisterPasswordVerifyChange)}
class="form-control"
required
+ autoComplete="new-password"
+ minLength={10}
maxLength={60}
/>
</div>