Browse Source

PersonImageCapitalisation(2)

Andrew Grant 1 month ago
parent
commit
b7fe72b135
1 changed files with 5 additions and 5 deletions
  1. 5 5
      src/main/resources/templates/text/personText/form.html

+ 5 - 5
src/main/resources/templates/text/personText/form.html

@@ -85,14 +85,14 @@
             </tr>
             <tr>
                 <td style="text-align: right;">
-                    <label for="caption">Heading :&nbsp;</label>
+                    <label for="heading">Heading :&nbsp;</label>
                 </td>
                 <td style="text-align: left;">
-                    <input class="form-control" id="caption"
-                           th:field="*{caption}" type="text">
-                    <div th:if="${#fields.hasErrors('caption')}">
+                    <input class="form-control" id="heading"
+                           th:field="*{heading}" type="text">
+                    <div th:if="${#fields.hasErrors('heading')}">
                         <ul class="text-danger">
-                            <li th:each="err : ${#fields.errors('caption')}" th:text="${err}"/>
+                            <li th:each="err : ${#fields.errors('heading')}" th:text="${err}"/>
                         </ul>
                     </div>
                 </td>