fix: URL in leaflet popup was missing
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
s3lph 2023-01-09 22:57:09 +01:00
parent 76e428b5ca
commit 8999acbd07
Signed by: s3lph
GPG key ID: 8AC98A811E5BEFF5

View file

@ -2,7 +2,7 @@ window.onload = (ev) => {
let spaces = [ let spaces = [
{% for space in hackerspaces %} {% for space in hackerspaces %}
{ name: '{{ space.name }}', address: '{{ space.address }}', lat: {{ space.lat }}, lon: {{ space.lon }}, open: '{{ space.open[lang] }}', web: '{{ space.contact.web }}', spaceapi: {% if 'spaceapi' in space %}'{{ space.spaceapi }}'{% else %}null{% endif %} }, { name: '{{ space.name }}', address: '{{ space.address }}', lat: {{ space.lat }}, lon: {{ space.lon }}, open: '{{ space.open[lang] }}', web: '{{ space.web }}', spaceapi: {% if 'spaceapi' in space %}'{{ space.spaceapi }}'{% else %}null{% endif %} },
{% endfor %} {% endfor %}
]; ];