mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 12:25:50 +00:00
fix: make id 'lastName' in findOwners.html unique
previously the div.control-group and the containing input shared the same id
This commit is contained in:
parent
3e65dee237
commit
5b0f037d06
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
<form th:object="${owner}" th:action="@{/owners}" method="get"
|
||||
class="form-horizontal" id="search-owner-form">
|
||||
<div class="form-group">
|
||||
<div class="control-group" id="lastName">
|
||||
<div class="control-group" id="lastNameGroup">
|
||||
<label class="col-sm-2 control-label">Last name </label>
|
||||
<div class="col-sm-10">
|
||||
<input class="form-control" th:field="*{lastName}" size="30"
|
||||
|
|
Loading…
Reference in a new issue