forked from dbroqua/MusicTopus
{BUGFIX} Espace double quote on artists
This commit is contained in:
parent
8289ed7116
commit
48287f2bae
2 changed files with 6 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
|||
<option value="">Tous</option>
|
||||
<%
|
||||
for (let i = 0; i < page.artists.length; i += 1 ) {
|
||||
__append(`<option value="${page.artists[i]}">${page.artists[i]}</option>`);
|
||||
__append(`<option value="${page.artists[i].replaceAll('"','%22')}">${page.artists[i]}</option>`);
|
||||
}
|
||||
%>
|
||||
</select>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue