From: marc tobias Date: Tue, 29 Aug 2023 20:48:12 +0000 (+0200) Subject: Details page: Allow searching for negative OSM ids X-Git-Url: https://git.openstreetmap.org/nominatim-ui.git/commitdiff_plain/ff984f72c904d8c4c1acbc894ac04a7f1546a80b Details page: Allow searching for negative OSM ids --- diff --git a/src/components/SearchSectionDetails.svelte b/src/components/SearchSectionDetails.svelte index f23a24c..5ca614a 100644 --- a/src/components/SearchSectionDetails.svelte +++ b/src/components/SearchSectionDetails.svelte @@ -6,8 +6,8 @@ function handleFormSubmit(event) { let form_el = event.target; let val = form_el.querySelector('input[type=edit]').value.trim(); - let type_and_id_match = val.match(/^\s*([NWR])(\d+)\s*$/i) - || val.match(/\/(relation|way|node)\/(\d+)\s*$/); + let type_and_id_match = val.match(/^\s*([NWR])(-?\d+)\s*$/i) + || val.match(/\/(relation|way|node)\/(-?\d+)\s*$/); var params = new URLSearchParams(); if (type_and_id_match) { @@ -30,7 +30,7 @@