fix(crud/index): fix row attribute value render
This commit is contained in:
parent
2e2b0bce10
commit
0fa748fd35
2 changed files with 4 additions and 1 deletions
|
|
@ -4,6 +4,9 @@
|
|||
* feat(repository): add RepositoryQuery::addCaseInsensitiveFilters()
|
||||
* feat(repository): add RepositoryQuery::addForcedFilterHandler()
|
||||
|
||||
### Fixed
|
||||
* fix(crud/index): fix row attribute value render
|
||||
|
||||
## [v1.27.0] - 2025-12-22
|
||||
### Fixed
|
||||
* fix(crud): use route params to redirect after a delation
|
||||
|
|
|
|||
|
|
@ -196,7 +196,7 @@
|
|||
{% set rowAttributes = configuration.listRowAttributes(context, item) %}
|
||||
{% set rowClasses = rowAttributes['class']|default('') %}
|
||||
|
||||
<tr {{ dataSortableItem|raw }} {% if configuration.doubleClick(context) %}data-dblclick="{{- dbClick -}}"{% endif %} class="{{ loop.index is odd ? 'is-odd' : 'is-even' }} {{ rowClasses }}" {% for attr, attrValue in rowAttributes %}{% if attr != 'class' %}{{ attr }}={{ attrValue }} {% endif %}{% endfor %}>
|
||||
<tr {{ dataSortableItem|raw }} {% if configuration.doubleClick(context) %}data-dblclick="{{- dbClick -}}"{% endif %} class="{{ loop.index is odd ? 'is-odd' : 'is-even' }} {{ rowClasses }}" {% for attr, attrValue in rowAttributes %}{% if attr != 'class' %}{{ attr }}="{{ attrValue }}" {% endif %}{% endfor %}>
|
||||
{% if configuration.hasBatchAction(context) %}
|
||||
<td class="crud-batch-column">
|
||||
<input type="checkbox" class="batch_form" name="batch[items][{{ loop.index }}]" form="form-batch" value="{{ loop.index }}">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue