Sfoglia il codice sorgente

Changed songslist artists array join.

KrisVos130 8 anni fa
parent
commit
e9ff721aa5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      frontend/components/Sidebars/SongsList.vue

+ 1 - 1
frontend/components/Sidebars/SongsList.vue

@@ -30,7 +30,7 @@
 						<p>
 							<strong>{{ song.title }}</strong>
 							<br>
-							<small>{{ song.artists }}</small>
+							<small>{{ song.artists.join(', ') }}</small>
 						</p>
 					</div>
 				</div>