Explorar el Código

Changed songslist artists array join.

KrisVos130 hace 8 años
padre
commit
e9ff721aa5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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>