mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Fix song edit form open bug
This commit is contained in:
parent
936dae09ec
commit
37e5c3853a
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ export default {
|
||||||
* Trigger opening the "Edit Song" form/overlay.
|
* Trigger opening the "Edit Song" form/overlay.
|
||||||
*/
|
*/
|
||||||
openEditForm () {
|
openEditForm () {
|
||||||
this.songs.length || event.emit('songs:edit', this.songs)
|
this.songs.length && event.emit('songs:edit', this.songs)
|
||||||
this.close()
|
this.close()
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue