This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
The following commit(s) were added to refs/heads/main by this push:
new 7de2b147 Add mandatory html tags (#876)
7de2b147 is described below
commit 7de2b147bcb9deb065ac89c7dd8ca65928e35a6d
Author: Bertil Chapuis <[email protected]>
AuthorDate: Thu Jun 13 18:05:01 2024 +0200
Add mandatory html tags (#876)
---
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();