mirror of
https://github.com/dalbodeule/snap-admin.git
synced 2025-06-08 13:28:21 +00:00
Better displaying of null values
This commit is contained in:
parent
c0373f3d03
commit
231383de84
@ -131,7 +131,14 @@
|
||||
</td>
|
||||
<td th:text="${entry.getFormattedDate()}">
|
||||
</td>
|
||||
<td th:text="${entry.getUsername()}">
|
||||
<td>
|
||||
<th:block th:if="${entry.getUsername() != null}">
|
||||
<span th:text="${entry.getUsername()}"></span>
|
||||
</th:block>
|
||||
<th:block th:if="${entry.getUsername() == null}">
|
||||
<span class="font-monospace null-label">NULL</span>
|
||||
</th:block>
|
||||
|
||||
</td>
|
||||
<!--
|
||||
<a href="#" class="ui-btn btn btn-primary">
|
||||
|
Loading…
x
Reference in New Issue
Block a user