Skip to content

Commit

Permalink
句読点をカンマに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
p1ass committed Jul 29, 2020
1 parent f8b1f99 commit 3f2ffc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/molecules/SearchResultList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<v-list-tile-content>
<v-list-tile-title>{{ item.name }}</v-list-tile-title>
<v-list-tile-sub-title>
{{ item.artists.map((artist) => artist.name).join('') }} -
{{ item.artists.map((artist) => artist.name).join(', ') }} -
{{ item.album.name }}
</v-list-tile-sub-title>
</v-list-tile-content>
Expand Down
2 changes: 1 addition & 1 deletion components/molecules/TrackListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<v-list-tile-content>
<v-list-tile-title>{{ track.name }}</v-list-tile-title>
<v-list-tile-sub-title>
{{ track.artists.map((artist) => artist.name).join('') }} -
{{ track.artists.map((artist) => artist.name).join(', ') }} -
{{ track.album.name }}
</v-list-tile-sub-title>
</v-list-tile-content>
Expand Down

0 comments on commit 3f2ffc9

Please sign in to comment.