소스 검색

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>