Browse Source

Changed songslist artists array join.

KrisVos130 8 years ago
parent
commit
e9ff721aa5
1 changed files with 1 additions and 1 deletions
  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>