fix(search): Change artist and song HTML elements from div to p

This commit is contained in:
AudricV 2024-02-22 09:34:59 +01:00
parent 2594192ae7
commit 534786954e
No known key found for this signature in database
GPG Key ID: DA92EC7905614198

View File

@ -15,12 +15,8 @@
{% set artist = array[0] %}
{% set song = array[1] %}
<div>
<div>
artist : {{artist}}
</div>
<div>
song : {{song}}
</div>
<p>artist : {{artist}}</p>
<p>song : {{song}}</p>
<img loading="lazy" src={{result['cover_image']}} alt="{{song ~ ' by ' ~ artist}}" />
</div>
{% endfor %}