Fix: preserve text linebreaks in doc edit (#7908)

This commit is contained in:
shamoon 2024-10-13 10:45:05 -07:00 committed by GitHub
parent 8e61a29137
commit cb617531bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -379,7 +379,7 @@
} }
} }
@case (ContentRenderType.Text) { @case (ContentRenderType.Text) {
<div class="preview-sticky bg-light p-3 overflow-auto" width="100%">{{previewText}}</div> <div class="preview-sticky bg-light p-3 overflow-auto whitespace-preserve" width="100%">{{previewText}}</div>
} }
@case (ContentRenderType.Image) { @case (ContentRenderType.Image) {
<div class="preview-sticky"> <div class="preview-sticky">

View File

@ -62,3 +62,7 @@ textarea.rtl {
height: 100%; height: 100%;
object-fit: contain; object-fit: contain;
} }
.whitespace-preserve {
white-space: preserve;
}