fix: artist side panel

This commit is contained in:
Phan An 2022-04-26 14:32:13 +03:00
parent 595f1681ff
commit c2426c1f20
No known key found for this signature in database
GPG key ID: A81E4477F0BB6FDC
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ context('Extra Information Panel', () => {
cy.fixture('song-info.get.200.json').then(data => {
data.lyrics = null
cy.intercept('GET', '/api/**/info', {
cy.intercept('/api/**/info', {
statusCode: 200,
body: data
})

View file

@ -42,7 +42,7 @@ const showingFullBio = ref(false)
watch(artist, () => (showingFullBio.value = false))
const showSummary = computed(() => mode.value !== 'full' && !showingFullBio)
const showSummary = computed(() => mode.value !== 'full' && !showingFullBio.value)
const showFull = computed(() => !showSummary.value)
const shuffleAll = () => playbackService.playAllByArtist(artist.value, false)