]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - src/pages/DeletablePage.svelte
svelte 4.x => 5.0
[nominatim-ui.git] / src / pages / DeletablePage.svelte
index 0748b5cbe9522783d5a6ef62700f7122c58cd67a..20b960b522ce704649111d05b87440247d83554b 100644 (file)
 
       <table class="table table-striped table-hover">
         <thead>
-          <th>Place id</th>
-          <th>Country Code</th>
-          <th>Name</th>
-          <th>OSM id</th>
-          <th>OSM type</th>
-          <th>Class</th>
-          <th>Type</th>
+          <tr>
+            <th>Place id</th>
+            <th>Country Code</th>
+            <th>Name</th>
+            <th>OSM object</th>
+            <th>Class</th>
+            <th>Type</th>
+          </tr>
         </thead>
         <tbody>
           {#each aPolygons as polygon}
@@ -46,7 +47,6 @@
             <td>{polygon.name}</td>
             <!-- eslint-disable-next-line svelte/no-at-html-tags -->
             <td>{@html osmLink(polygon)}</td>
-            <td>{polygon.osm_type}</td>
             <td>{polygon.class}</td>
             <td>{polygon.type}</td>
           </tr>