fix: js references

This commit is contained in:
Vlad Stan 2023-02-28 09:50:49 +02:00
parent 8a459acf80
commit d1173e0e73
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
const stalls = async () => {
Vue.component(VueQrcode.name, VueQrcode)
await relayDetails('static/components/stall-details/stall-details.html')
await stallDetails('static/components/stall-details/stall-details.html')
new Vue({
el: '#vue',

View file

@ -22,8 +22,8 @@
</div>
</div>
{% endblock%}{% block scripts %} {{ window_vars(user) }}
<script src="{{ url_for('nostrstall_static', path='js/utils.js') }}"></script>
<script src="{{ url_for('nostrstall_static', path='components/stall-details/stall-details.js') }}"></script>
<script src="{{ url_for('nostrstall_static', path='js/index.js') }}"></script>
<script src="{{ url_for('nostrmarket_static', path='js/utils.js') }}"></script>
<script src="{{ url_for('nostrmarket_static', path='components/stall-details/stall-details.js') }}"></script>
<script src="{{ url_for('nostrmarket_static', path='js/index.js') }}"></script>
{% endblock %}