mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Fix method name
This commit is contained in:
parent
5c7066dd30
commit
483c996aa5
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<tr
|
||||
@dblclick.prevent="playRighAwayyyyyyy"
|
||||
@dblclick.prevent="playRightAwayyyyyyy"
|
||||
class="song-item"
|
||||
:class="{ selected: selected, playing: playbackState === 'playing' || playbackState === 'paused' }"
|
||||
>
|
||||
|
@ -33,7 +33,7 @@
|
|||
/**
|
||||
* Play the song right away.
|
||||
*/
|
||||
playRighAwayyyyyyy() {
|
||||
playRightAwayyyyyyy() {
|
||||
if (!queueStore.contains(this.song)) {
|
||||
queueStore.queueAfterCurrent(this.song);
|
||||
}
|
||||
|
@ -53,7 +53,7 @@
|
|||
playback.resume();
|
||||
break;
|
||||
default:
|
||||
this.playRighAwayyyyyyy();
|
||||
this.playRightAwayyyyyyy();
|
||||
break;
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue