#23 AlbumPage: changed artist names <span> to <v-chip> to actually seem clickable

Open
kiraathecorsac wants to merge 1 commits from kiraathecorsac/freezerpc:master into master
  1. +5
    -5
      app/client/src/views/AlbumPage.vue

+ 5
- 5
app/client/src/views/AlbumPage.vue View File

@ -14,11 +14,11 @@
<v-progress-circular indeterminate></v-progress-circular>
</v-overlay>
<h1>{{album.title}}</h1>
<h3>
<span v-for='(artist, index) in album.artists' :key='"artist"+index' @click='goArtist(artist)'>
{{artist.name}}<span v-if='index != album.artists.length - 1'>, </span>
</span>
</h3>
<v-chip-group>
<v-chip v-for='(artist, index) in album.artists' :key='"artist"+index' @click='goArtist(artist)'>
{{artist.name}}
</v-chip>
</v-chip-group>
<div class='mt-2' v-if='!loading'>
<span class='text-subtitle-2'>{{album.tracks.length}} {{$t("tracks")}}</span><br>
<span class='text-subtitle-2'>{{$t("Duration")}}: {{duration}}</span><br>


Loading…
Cancel
Save