diff --git a/modules/lock/Input.qml b/modules/lock/Input.qml index 578ead0e..c9c1431b 100644 --- a/modules/lock/Input.qml +++ b/modules/lock/Input.qml @@ -98,7 +98,7 @@ ColumnLayout { } else { root.passwordBuffer = root.passwordBuffer.slice(0, -1); } - } else if ("abcdefghijklmnopqrstuvwxyz1234567890`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?".includes(event.text.toLowerCase())) { + } else if (" abcdefghijklmnopqrstuvwxyz1234567890`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?".includes(event.text.toLowerCase())) { charList.bindImWidth(); root.passwordBuffer += event.text; }