Skip to content

Commit

Permalink
fix(core/ui): fix paginated data size mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
ibz committed Nov 26, 2024
1 parent 4f8cc52 commit 7797e11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions core/.changelog.d/4302.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[T3B1] Fix data size mismatch when confirming a blob.
2 changes: 1 addition & 1 deletion core/src/trezor/ui/layouts/tr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ async def _confirm_ask_pagination(
confirm_more_layout = trezorui2.confirm_more(
title=title,
button=TR.buttons__confirm,
items=[(ui.BOLD_UPPER, f"Size: {len(data)} bytes"), (ui.MONO, data)],
items=[(ui.NORMAL, description), (ui.MONO, data)],
)

while True:
Expand Down

0 comments on commit 7797e11

Please sign in to comment.