We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a9813b commit 485ac39Copy full SHA for 485ac39
vertigo-ui/src/main/resources/io/vertigo/ui/components/table/column.html
@@ -27,7 +27,7 @@
27
th:assert="${(field != null) or (name != null and label != null)}"
28
th:with="columnName=${field != null ? field : name },
29
columnLabel=${label != null ? label : model.util.label('__${list + '.' + field}__')},
30
- myDisplayField=${model.util.resolveDisplayField(list, field)},
+ myDisplayField=${field != null ? model.util.resolveDisplayField(list, field) : null},
31
mySuffix=${model.util.smartTypeUnit(list, field, null)}" >
32
<vu:include-data th:if="${myDisplayField != null}" object="${list}" field="${myDisplayField}"/>
33
<div class="q-table__grid-item-row" th:attr="__${td_attrs}__" >
0 commit comments