Przeglądaj źródła

Don't split artists in array in report modal

Kristian Vos 4 lat temu
rodzic
commit
9d39b15c4a
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      frontend/components/Modals/Report.vue

+ 2 - 2
frontend/components/Modals/Report.vue

@@ -31,7 +31,7 @@
 											}}</strong>
 											<br />
 											<small>{{
-												previousSong.artists.split(" ,")
+												previousSong.artists
 											}}</small>
 										</p>
 									</div>
@@ -74,7 +74,7 @@
 											}}</strong>
 											<br />
 											<small>{{
-												currentSong.artists.split(" ,")
+												currentSong.artists
 											}}</small>
 										</p>
 									</div>