Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
parity-signer
Commits
cccfac77
Commit
cccfac77
authored
Aug 14, 2018
by
fro
Browse files
fix unlock if pin.length < 6
parent
b6dc9128
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/screens/AccountUnlock.js
View file @
cccfac77
...
...
@@ -139,7 +139,7 @@ class AccountUnlockView extends React.PureComponent {
<
PinInput
onChangeText
=
{
pin
=>
{
this
.
setState
({
pin
});
if
(
pin
.
length
<
6
)
{
if
(
pin
.
length
<
1
)
{
return
;
}
debounce
(
this
.
props
.
onChange
,
200
)(
pin
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment