Update ownerlist.html

add a blank space on ownerlist.html to have a better look
This commit is contained in:
zhouhaojie 2021-04-25 10:48:24 +08:00 committed by GitHub
parent e5bd05cc20
commit 7800d94380
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@
<td th:text="${owner.address}"/>
<td th:text="${owner.city}"/>
<td th:text="${owner.telephone}"/>
<td><span th:each="pet, iterStat : ${owner.pets}" th:text="${iterStat.last} ? ${pet.name} : ${pet.name} + ','"/></td>
<td><span th:each="pet : ${owner.pets}" th:text="${pet.name} + ' '"/></td>
</tr>
</tbody>
</table>