Fixed error reporting format.
This commit is contained in:
committed by
Rossen Stoyanchev
parent
f60181ad06
commit
63170166fb
@@ -76,7 +76,9 @@
|
||||
<form id="booking" action="#" th:object="${booking}" th:action="${flowExecutionUrl}" method="post">
|
||||
|
||||
<div class="error" th:if="${#fields.hasErrors('*')}">
|
||||
<span th:each="err : ${#fields.errors('*')}" th:text="${err} + '<br />'">Input is incorrect</span>
|
||||
<span th:each="err : ${#fields.errors('*')}">
|
||||
<span th:text="${err}">Input is incorrect</span><br />
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<fieldset>
|
||||
|
||||
Reference in New Issue
Block a user