chore: fixed some route names that were not correct; style: made back button in artist, playlist and album tabs stick to the top of the window

This commit is contained in:
Roberto Tonino
2020-10-13 22:14:37 +02:00
parent 97842db422
commit 932ffc10e7
6 changed files with 18 additions and 26 deletions

View File

@@ -7,8 +7,6 @@
'linear-gradient(to bottom, transparent 0%, var(--main-background) 100%), url(\'' + image + '\')'
}"
>
<BackButton />
<h1>{{ title }}</h1>
<div role="button" aria-label="download" @click.stop="addToQueue" :data-link="link" class="fab right">
<i class="material-icons" :title="$t('globals.download_hint')">get_app</i>
@@ -84,8 +82,6 @@ import { socket } from '@/utils/socket'
import Downloads from '@/utils/downloads'
import EventBus from '@/utils/EventBus'
import BackButton from '@components/globals/BackButton.vue'
export default {
data() {
return {
@@ -115,9 +111,6 @@ export default {
} else return []
}
},
components: {
BackButton
},
mounted() {
socket.on('show_artist', this.showArtist)

View File

@@ -6,8 +6,6 @@
'linear-gradient(to bottom, transparent 0%, var(--main-background) 100%), url(\'' + image + '\')'
}"
>
<BackButton />
<h1 class="inline-flex">
{{ title }} <i v-if="explicit" class="material-icons explicit_icon explicit_icon--right">explicit</i>
</h1>
@@ -157,8 +155,6 @@ import Downloads from '@/utils/downloads'
import Utils from '@/utils/utils'
import EventBus from '@/utils/EventBus'
import BackButton from '@components/globals/BackButton.vue'
export default {
data() {
return {
@@ -173,9 +169,6 @@ export default {
body: []
}
},
components: {
BackButton
},
mounted() {
EventBus.$on('tracklistTab:selectRow', this.selectRow)