This is an automated email from the ASF dual-hosted git repository.

bchapuis pushed a commit to branch sonar
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git

commit 66eaa4670751fbc58bc53ff7aded2deae60ac945
Author: Bertil Chapuis <[email protected]>
AuthorDate: Thu Jun 13 15:58:29 2024 +0200

    Add mandatory html tags
---
 baremaps-server/src/main/resources/geocoder/index.html | 6 +++++-
 baremaps-server/src/main/resources/iploc/index.html    | 6 +++++-
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/baremaps-server/src/main/resources/geocoder/index.html 
b/baremaps-server/src/main/resources/geocoder/index.html
index 5ae75f29..0f34ed5b 100644
--- a/baremaps-server/src/main/resources/geocoder/index.html
+++ b/baremaps-server/src/main/resources/geocoder/index.html
@@ -43,7 +43,11 @@ limitations under the License.
     <input type="submit" value="Submit"/>
 </form>
 <!-- The table of retrieved locations -->
-<table id="results"></table>
+<table id="results">
+    <tr>
+        <th></th>
+    </tr>
+</table>
 
 <script>
 
diff --git a/baremaps-server/src/main/resources/iploc/index.html 
b/baremaps-server/src/main/resources/iploc/index.html
index 3d7d38ec..67a937b8 100644
--- a/baremaps-server/src/main/resources/iploc/index.html
+++ b/baremaps-server/src/main/resources/iploc/index.html
@@ -43,7 +43,11 @@ limitations under the License.
         <input type="submit" value="Submit"/>
     </form>
     <!-- The table of retrieved locations -->
-    <table id="results"></table>
+    <table id="results">
+        <tr>
+            <th></th>
+        </tr>
+    </table>
     <script>
         function searchByIp(event) {
             event.preventDefault();

Reply via email to