Skip to content

Commit 2785daf

Browse files
authored
fix(ui5-table-row): Do not show the colon when there is no popin text (#1620)
1 parent 28326c5 commit 2785daf

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/main/src/TableRow.hbs

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,19 @@
1313
<slot name="{{this._individualSlot}}"></slot>
1414
{{/each}}
1515
{{/if}}
16-
</tr>
16+
</tr>
1717

1818
{{#if shouldPopin}}
1919
{{#each popinCells}}
2020
<tr class="ui5-table-popin-row" @ui5-_cellclick="{{_oncellclick}}">
2121
<td colspan="{{../visibleCellsCount}}">
22-
<span class="ui5-table-row-popin-title">{{this.popinText}}:</span>
22+
{{#if this.popinText}}
23+
<span class="ui5-table-row-popin-title">{{this.popinText}}:</span>
24+
{{/if}}
2325
<div>
2426
<slot name="{{this.cell._individualSlot}}"></slot>
2527
</div>
2628
</td>
2729
</tr>
2830
{{/each}}
29-
{{/if}}
31+
{{/if}}

0 commit comments

Comments
 (0)