From 3f2ffc9323326397f9a30205ba3682a68ecd97db Mon Sep 17 00:00:00 2001 From: Naoki Kishi Date: Wed, 29 Jul 2020 20:14:23 +0900 Subject: [PATCH] =?UTF-8?q?=E5=8F=A5=E8=AA=AD=E7=82=B9=E3=82=92=E3=82=AB?= =?UTF-8?q?=E3=83=B3=E3=83=9E=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/molecules/SearchResultList.vue | 2 +- components/molecules/TrackListItem.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/molecules/SearchResultList.vue b/components/molecules/SearchResultList.vue index bbacc620..d39d957b 100644 --- a/components/molecules/SearchResultList.vue +++ b/components/molecules/SearchResultList.vue @@ -14,7 +14,7 @@ {{ item.name }} - {{ item.artists.map((artist) => artist.name).join('、') }} - + {{ item.artists.map((artist) => artist.name).join(', ') }} - {{ item.album.name }} diff --git a/components/molecules/TrackListItem.vue b/components/molecules/TrackListItem.vue index 4bdfd3ab..5d5c35ef 100644 --- a/components/molecules/TrackListItem.vue +++ b/components/molecules/TrackListItem.vue @@ -6,7 +6,7 @@ {{ track.name }} - {{ track.artists.map((artist) => artist.name).join('、') }} - + {{ track.artists.map((artist) => artist.name).join(', ') }} - {{ track.album.name }}