File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -800,7 +800,7 @@ export default {
800800
801801 async [ actions . LOAD_DELETED_FOLDERS ] ( { commit, dispatch, state } ) {
802802 if ( state . loading . deleted_folders ) {
803- return ;
803+ return
804804 }
805805 if ( state . deletedFolders === null ) {
806806 try {
@@ -829,11 +829,11 @@ export default {
829829 } = response
830830 if ( status !== 'success' ) throw new Error ( data )
831831 const folders = data
832- commit ( mutations . FETCH_END , 'deleted_folders' ) ;
832+ commit ( mutations . FETCH_END , 'deleted_folders' )
833833 return commit ( mutations . SET_DELETED_FOLDERS , folders )
834834 } catch ( err ) {
835835 console . error ( err )
836- commit ( mutations . FETCH_END , 'deleted_folders' ) ;
836+ commit ( mutations . FETCH_END , 'deleted_folders' )
837837 commit (
838838 mutations . SET_ERROR ,
839839 AppGlobal . methods . t ( 'bookmarks' , 'Failed to load deleted folders' ) ,
@@ -1664,7 +1664,7 @@ export default {
16641664 type : 'emptyTrashbin' ,
16651665 cancel ( ) {
16661666 canceled = true
1667- }
1667+ } ,
16681668 } )
16691669 try {
16701670 const response = await axios . delete ( url ( state , '/folder/deleted' ) , {
You can’t perform that action at this time.
0 commit comments