File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -261,7 +261,9 @@ export function createQueueStore(Alpine) {
261261 console . error ( '[queue] Failed to persist insert:' , error ) ;
262262 }
263263 } finally {
264- setTimeout ( ( ) => { this . _updating = false ; } , 50 ) ;
264+ setTimeout ( ( ) => {
265+ this . _updating = false ;
266+ } , 50 ) ;
265267 }
266268 } ,
267269
@@ -509,7 +511,9 @@ export function createQueueStore(Alpine) {
509511 try {
510512 await this . _doSkipNext ( ) ;
511513 } finally {
512- setTimeout ( ( ) => { this . _updating = false ; } , 50 ) ;
514+ setTimeout ( ( ) => {
515+ this . _updating = false ;
516+ } , 50 ) ;
513517 }
514518 } ,
515519
@@ -528,7 +532,9 @@ export function createQueueStore(Alpine) {
528532 try {
529533 await this . playPrevious ( ) ;
530534 } finally {
531- setTimeout ( ( ) => { this . _updating = false ; } , 50 ) ;
535+ setTimeout ( ( ) => {
536+ this . _updating = false ;
537+ } , 50 ) ;
532538 }
533539 } ,
534540
@@ -579,7 +585,9 @@ export function createQueueStore(Alpine) {
579585 // Sync queue order to backend
580586 await this . _syncQueueToBackend ( ) ;
581587 } finally {
582- setTimeout ( ( ) => { this . _updating = false ; } , 50 ) ;
588+ setTimeout ( ( ) => {
589+ this . _updating = false ;
590+ } , 50 ) ;
583591 }
584592 } ,
585593
You can’t perform that action at this time.
0 commit comments