Skip to content

Commit 977f1f3

Browse files
authored
8831 add line break for paragraph (#8910)
1 parent 426e5b8 commit 977f1f3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

app/styles/components/speaker-list.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
overflow-wrap: break-word;
1515
}
1616

17+
.line-break {
18+
white-space: pre-line;
19+
}
20+
1721
.thumbnail-square {
1822
height: 300px;
1923
overflow: hidden;

app/templates/components/forms/orders/attendee-list.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<Input type="text" placeholder={{t-var field.name}} @value={{get holder field.identifierPath}}/>
5151
{{/if}}
5252
{{else if (eq field.type 'paragraph')}}
53-
<span>{{get holder field.identifierPath}}</span>
53+
<span class="line-break">{{get holder field.identifierPath}}</span>
5454
{{else if (eq field.type 'select')}}
5555
<span class="word-break">{{get holder field.identifierPath}}</span>
5656
{{else if (eq field.type 'checkbox')}}

0 commit comments

Comments
 (0)