Skip to content

Commit

Permalink
fix(ui5-upload-collection): wrap noDataText/Desc text (#2674)
Browse files Browse the repository at this point in the history
Now the noDataText and noDateDescription texts will wrap upon overflow. Prior to this change the texts truncate.

FIXES: #2672
  • Loading branch information
ilhan007 committed Jan 13, 2021
1 parent 849d052 commit c48bfe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/fiori/src/UploadCollection.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<div class="icon-container">
<ui5-icon name="document"></ui5-icon>
</div>
<ui5-title level="H2">{{_noDataText}}</ui5-title>
<ui5-label class="subtitle">{{_noDataDescription}}</ui5-label>
<ui5-title level="H2" wrap>{{_noDataText}}</ui5-title>
<ui5-label class="subtitle" wrap>{{_noDataDescription}}</ui5-label>
</div>
{{else if _showDndOverlay}}
<div
Expand Down

0 comments on commit c48bfe7

Please sign in to comment.