feat: limit password length

This commit is contained in:
Sebastian Pravda 2023-01-13 11:51:06 +01:00
parent acc6845b89
commit c36911d9b1
No known key found for this signature in database
GPG key ID: F3BC84F08EFA3F57

View file

@ -15,6 +15,7 @@
let isError: boolean = false;
$: {
codeValueMobile = codeValueMobile.slice(0, 12);
codeValueMobile = codeValueMobile.toUpperCase();
codeValueArray = codeValueMobile.split('');
}