change text separator

This commit is contained in:
Thomas Amland 2020-08-21 19:19:54 +02:00
parent c6cfbdf131
commit 9c93ec6e56
2 changed files with 3 additions and 3 deletions

View File

@ -12,8 +12,8 @@
<router-link :to="{name: 'artist', params: { id: album.artistId }}"> <router-link :to="{name: 'artist', params: { id: album.artistId }}">
{{ album.artist }} {{ album.artist }}
</router-link> </router-link>
<span v-if="album.year"> · {{ album.year }}</span> <span v-if="album.year"> {{ album.year }}</span>
<span v-if="album.genre"> · {{ album.genre }}</span> <span v-if="album.genre"> {{ album.genre }}</span>
</p> </p>
<div class="text-nowrap"> <div class="text-nowrap">
<b-btn variant="secondary" class="mr-2" @click="play"> <b-btn variant="secondary" class="mr-2" @click="play">

View File

@ -5,7 +5,7 @@
:to="{name: 'genre', params: { id: item.id } }" :to="{name: 'genre', params: { id: item.id } }"
:title="item.name"> :title="item.name">
<template v-slot:text> <template v-slot:text>
<strong>{{ item.albumCount }}</strong> albums · <strong>{{ item.albumCount }}</strong> albums
<strong>{{ item.songCount }}</strong> songs <strong>{{ item.songCount }}</strong> songs
</template> </template>
</Tile> </Tile>