From f8b1f9977b10429cfc66e31a31ab8b6ea5a2bd36 Mon Sep 17 00:00:00 2001 From: Naoki Kishi Date: Wed, 29 Jul 2020 19:38:22 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=E8=A4=87=E6=95=B0=E4=BA=BA=E3=82=A2?= =?UTF-8?q?=E3=83=BC=E3=83=86=E3=82=A3=E3=82=B9=E3=83=88=E3=81=AE=E8=A1=A8?= =?UTF-8?q?=E7=A4=BA=E3=81=AB=E5=AF=BE=E5=BF=9C=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/molecules/SearchResultList.vue | 3 ++- components/molecules/TrackListItem.vue | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/components/molecules/SearchResultList.vue b/components/molecules/SearchResultList.vue index abdcc601..bbacc620 100644 --- a/components/molecules/SearchResultList.vue +++ b/components/molecules/SearchResultList.vue @@ -14,7 +14,8 @@ {{ item.name }} - {{ item.album.name }} - {{ item.artists[0].name }} + {{ item.artists.map((artist) => artist.name).join('、') }} - + {{ item.album.name }} diff --git a/components/molecules/TrackListItem.vue b/components/molecules/TrackListItem.vue index e4848783..4bdfd3ab 100644 --- a/components/molecules/TrackListItem.vue +++ b/components/molecules/TrackListItem.vue @@ -5,8 +5,9 @@ {{ track.name }} - {{ track.album.name }} - {{ track.artists[0].name }} + + {{ track.artists.map((artist) => artist.name).join('、') }} - + {{ track.album.name }} From 3f2ffc9323326397f9a30205ba3682a68ecd97db Mon Sep 17 00:00:00 2001 From: Naoki Kishi Date: Wed, 29 Jul 2020 20:14:23 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=E5=8F=A5=E8=AA=AD=E7=82=B9=E3=82=92?= =?UTF-8?q?=E3=82=AB=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 }}