mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-22 22:38:08 +00:00
fix(core): add missing semicolon into the passphrase entry for TS3
This commit is contained in:
parent
c09f9e88e2
commit
c2eaaaf8b5
1
core/.changelog.d/3477.fixed
Normal file
1
core/.changelog.d/3477.fixed
Normal file
@ -0,0 +1 @@
|
||||
[T2B1] Add missing semicolon character to the passphrase entry
|
@ -31,7 +31,7 @@ const MAX_PASSPHRASE_LENGTH: usize = 50;
|
||||
const DIGITS: &str = "0123456789";
|
||||
const LOWERCASE_LETTERS: &str = "abcdefghijklmnopqrstuvwxyz";
|
||||
const UPPERCASE_LETTERS: &str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
||||
const SPECIAL_SYMBOLS: &str = "_<>.:@/|\\!()+%&-[]?{},\'`\"~$^=*#";
|
||||
const SPECIAL_SYMBOLS: &str = "_<>.:@/|\\!()+%&-[]?{},\'`;\"~$^=*#";
|
||||
|
||||
const MENU_LENGTH: usize = 8;
|
||||
const SHOW_INDEX: usize = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user