[ADF-1861] - Line breaks not displayed in "Display Text" widget in forms (#2597)

Fixed
This commit is contained in:
mihai sirghe 2017-11-02 16:15:41 +02:00 committed by Eugenio Romano
parent 30ee40a4be
commit 712690990c
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1 @@
<div class="adf-display-text-widget {{field.className}}">
<span>{{field.value}}</span>
</div>
<div class="adf-display-text-widget {{field.className}}">{{field.value}}</div>

View File

@ -1 +1,3 @@
.adf-display-text-widget {}
.adf-display-text-widget {
white-space: pre-wrap;
}