mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 13:05:49 +00:00
Fix typo in visits form which caused button to miss its text
Signed-off-by: Denis Fuenzalida <denis.fuenzalida@gmail.com>
This commit is contained in:
parent
67643c4137
commit
f9399b7a9f
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="col-sm-offset-2 col-sm-10">
|
<div class="col-sm-offset-2 col-sm-10">
|
||||||
<input type="hidden" name="petId" th:value="${pet.id}" />
|
<input type="hidden" name="petId" th:value="${pet.id}" />
|
||||||
<button class="btn btn-primary" type="submit" th:text="${addVisit}">Add Visit</button>
|
<button class="btn btn-primary" type="submit" th:text="#{addVisit}">Add Visit</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in a new issue