Skip to content

Commit

Permalink
fix(ui5-table-row): Do not show the colon when there is no popin text (
Browse files Browse the repository at this point in the history
  • Loading branch information
vladitasev committed May 15, 2020
1 parent 28326c5 commit 2785daf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/main/src/TableRow.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@
<slot name="{{this._individualSlot}}"></slot>
{{/each}}
{{/if}}
</tr>
</tr>

{{#if shouldPopin}}
{{#each popinCells}}
<tr class="ui5-table-popin-row" @ui5-_cellclick="{{_oncellclick}}">
<td colspan="{{../visibleCellsCount}}">
<span class="ui5-table-row-popin-title">{{this.popinText}}:</span>
{{#if this.popinText}}
<span class="ui5-table-row-popin-title">{{this.popinText}}:</span>
{{/if}}
<div>
<slot name="{{this.cell._individualSlot}}"></slot>
</div>
</td>
</tr>
{{/each}}
{{/if}}
{{/if}}

0 comments on commit 2785daf

Please sign in to comment.