Hi,
I have an page with Leaflet Map on top. It works until I fetch a linked post in a mb view and display the title. Then an 2nd leaflet js is loaded.
1st from Leaflet Map : https://unpkg.com/[email protected]/dist/leaflet.js
2nd from MB : /[email protected]/dist/leaflet.js
Why is the MB View loading an Leaflet JS when I only will show the title?
When I remove the title and replace with some dummy text then it works normally.
Is there work around for this?
<div class="grid--1">
{% set relationship = attribute( relationships, 'locatie-to-route' ) %}
{% for post in relationship.from %}
<div>
{{ post.title }}
</div>
{% endfor %}
</div>