Skip to content

Commit

Permalink
fix: "Encryption Info" dialog newline wrapping
Browse files Browse the repository at this point in the history
Closes #4160
  • Loading branch information
WofWca committed Oct 2, 2024
1 parent c981d4e commit 88793fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
- crash on clicking "About" when no account is selected (e.g. after deleting an account) #4154
- show "new group" instead of "new contact" when pasting a group invite link in the search field #4151
- message input getting unexpectedly re-focused, and not re-focused after some actions if the draft text is not empty #4136
- "Encryption Info" dialog showing all info in one line #4162

<a id="1_46_8"></a>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function EncryptionInfo({
<Dialog onClose={onClose}>
<DialogBody>
<DialogContent paddingTop>
<p>
<p style={{ whiteSpace: 'pre-wrap' }}>
{!encryptionInfo && 'Fetching...'}
{encryptionInfo && encryptionInfo}
</p>
Expand Down

0 comments on commit 88793fd

Please sign in to comment.