Skip to content

Commit

Permalink
FIO-8234/FIO-7195: Fixes an issue where value properties are shown in…
Browse files Browse the repository at this point in the history
…stead of labels for Select component with Resource/URL data sources in DataTable
  • Loading branch information
alexandraRamanenka committed Oct 4, 2024
1 parent f833fb1 commit a59fe95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions lib/mjs/package.json

This file was deleted.

6 changes: 3 additions & 3 deletions src/templates/bootstrap4/tbody/html.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
{% } %}
{% row.forEach(function(rowComp) { %}
{% if (rowComp.component.show) { %}
<td
<td
{{ ctx.component.cellMaxWidth ? 'style="max-width:'+ ctx.component.cellMaxWidth + ';"' : ''}}
{{ ctx.component.clipCells ? 'class="clip"' : ''}}>
{{ ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue) }}
{{ ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue, rowComp.rowIndex) }}
</td>
{% } %}
{% }); %}
Expand Down Expand Up @@ -44,4 +44,4 @@
</tr>
{% }); %}
</tbody>
</table>
</table>

0 comments on commit a59fe95

Please sign in to comment.