From 5b0f037d06de2c9ad3be4fdf52402ddb5667e2da Mon Sep 17 00:00:00 2001
From: thetric <broj.dominik@gmail.com>
Date: Fri, 19 May 2017 12:16:02 +0200
Subject: [PATCH] fix: make id 'lastName' in findOwners.html unique

previously the div.control-group and the containing input shared the same id
---
 src/main/resources/templates/owners/findOwners.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/resources/templates/owners/findOwners.html b/src/main/resources/templates/owners/findOwners.html
index 911ac95..982be5e 100644
--- a/src/main/resources/templates/owners/findOwners.html
+++ b/src/main/resources/templates/owners/findOwners.html
@@ -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"
-- 
GitLab