mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 21:18:01 +02:00
Replace conditional operator with boolean
This commit is contained in:
parent
e1c88a56f2
commit
ab2516ff70
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue