This commit is contained in:
wvffle 2022-11-04 12:56:02 +00:00 committed by Kasper Seweryn
parent 315e5ef766
commit ec31004952
1 changed files with 4 additions and 4 deletions

View File

@ -216,7 +216,7 @@ const coverType = ref(CoverType.COVER_ART)
<button <button
v-if="coverType === CoverType.COVER_ART" v-if="coverType === CoverType.COVER_ART"
class="ui secondary button" class="ui secondary button"
:aria-title="labels.showVisualizer" :aria-label="labels.showVisualizer"
:title="labels.showVisualizer" :title="labels.showVisualizer"
@click="coverType = CoverType.MILK_DROP" @click="coverType = CoverType.MILK_DROP"
> >
@ -225,7 +225,7 @@ const coverType = ref(CoverType.COVER_ART)
<button <button
v-else-if="coverType === CoverType.MILK_DROP" v-else-if="coverType === CoverType.MILK_DROP"
class="ui secondary button" class="ui secondary button"
:aria-title="labels.showCoverArt" :aria-label="labels.showCoverArt"
:title="labels.showCoverArt" :title="labels.showCoverArt"
@click="coverType = CoverType.COVER_ART" @click="coverType = CoverType.COVER_ART"
> >
@ -235,7 +235,7 @@ const coverType = ref(CoverType.COVER_ART)
<button <button
v-if="!fullscreen" v-if="!fullscreen"
class="ui secondary button" class="ui secondary button"
:aria-title="labels.fullscreen" :aria-label="labels.fullscreen"
:title="labels.fullscreen" :title="labels.fullscreen"
@click="enter" @click="enter"
> >
@ -244,7 +244,7 @@ const coverType = ref(CoverType.COVER_ART)
<button <button
v-else v-else
class="ui secondary button" class="ui secondary button"
:aria-title="labels.exitFullscreen" :aria-label="labels.exitFullscreen"
:title="labels.exitFullscreen" :title="labels.exitFullscreen"
@click="exit" @click="exit"
> >