From c2eaaaf8b5a6fae47ed5637c598937341656f691 Mon Sep 17 00:00:00 2001 From: grdddj Date: Tue, 2 Jan 2024 12:25:29 +0100 Subject: [PATCH] fix(core): add missing semicolon into the passphrase entry for TS3 --- core/.changelog.d/3477.fixed | 1 + .../rust/src/ui/model_tr/component/input_methods/passphrase.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 core/.changelog.d/3477.fixed diff --git a/core/.changelog.d/3477.fixed b/core/.changelog.d/3477.fixed new file mode 100644 index 0000000000..1b23a16fee --- /dev/null +++ b/core/.changelog.d/3477.fixed @@ -0,0 +1 @@ +[T2B1] Add missing semicolon character to the passphrase entry diff --git a/core/embed/rust/src/ui/model_tr/component/input_methods/passphrase.rs b/core/embed/rust/src/ui/model_tr/component/input_methods/passphrase.rs index 47327311b0..c92c4f0a24 100644 --- a/core/embed/rust/src/ui/model_tr/component/input_methods/passphrase.rs +++ b/core/embed/rust/src/ui/model_tr/component/input_methods/passphrase.rs @@ -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;