ソースを参照

Changed songslist artists array join.

KrisVos130 8 年 前
コミット
e9ff721aa5
1 ファイル変更1 行追加1 行削除
  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>