Skip to content

Commit 485ac39

Browse files
committed
[ui] fix column-grid
1 parent 9a9813b commit 485ac39

File tree

1 file changed

+1
-1
lines changed
  • vertigo-ui/src/main/resources/io/vertigo/ui/components/table

1 file changed

+1
-1
lines changed

vertigo-ui/src/main/resources/io/vertigo/ui/components/table/column.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
th:assert="${(field != null) or (name != null and label != null)}"
2828
th:with="columnName=${field != null ? field : name },
2929
columnLabel=${label != null ? label : model.util.label('__${list + '.' + field}__')},
30-
myDisplayField=${model.util.resolveDisplayField(list, field)},
30+
myDisplayField=${field != null ? model.util.resolveDisplayField(list, field) : null},
3131
mySuffix=${model.util.smartTypeUnit(list, field, null)}" >
3232
<vu:include-data th:if="${myDisplayField != null}" object="${list}" field="${myDisplayField}"/>
3333
<div class="q-table__grid-item-row" th:attr="__${td_attrs}__" >

0 commit comments

Comments
 (0)