Skip to content

Commit

Permalink
fix: Pop up window can be rolled when error message is long (#2995)
Browse files Browse the repository at this point in the history
fix: issue 337
  • Loading branch information
devchenyan authored Dec 26, 2023
1 parent 432f0ec commit 4f7d117
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
line-height: 28px;
margin: 0;
color: var(--dialog-secondary-text-color);
word-break: break-word;
white-space: pre-wrap;
word-wrap: break-word;
overflow-wrap: break-word;
}

.actions {
Expand Down

2 comments on commit 4f7d117

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 7325680251

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 7325679142

Please sign in to comment.