Replace conditional operator with boolean

This commit is contained in:
banaanihillo@protonmail.ch 2024-04-20 17:19:43 +03:00
parent e1c88a56f2
commit ab2516ff70

View file

@ -136,7 +136,7 @@ const openSong = el => {
class="bi bi-three-dots-vertical popup-wrap ign" class="bi bi-three-dots-vertical popup-wrap ign"
@mouseenter="show = true" @mouseenter="show = true"
@mouseleave="show = false" @mouseleave="show = false"
@click.enter="show ? show = false : show = true"> @click.enter="show = !show">
<Transition name="fade"> <Transition name="fade">
<div v-if="show" class="popup ign"> <div v-if="show" class="popup ign">
<button <button