mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 16:22:14 +00:00
upload request prototype UI
This commit is contained in:
3
resources/js/store/modules/fileFunctions.js
vendored
3
resources/js/store/modules/fileFunctions.js
vendored
@@ -203,7 +203,6 @@ const actions = {
|
||||
|
||||
// Reload File data after folder uploading is finished
|
||||
if (getters.isUploadingFolder) {
|
||||
|
||||
// Reload files after upload is done
|
||||
Vue.prototype.$getDataByLocation()
|
||||
|
||||
@@ -330,7 +329,7 @@ const actions = {
|
||||
.then(() => {
|
||||
itemsToDelete.forEach((data) => {
|
||||
// If is folder, update app data
|
||||
if (data.type === 'folder' && (getters.currentFolder && data.id === getters.currentFolder.data.id)) {
|
||||
if (data.type === 'folder' && getters.currentFolder && data.id === getters.currentFolder.data.id) {
|
||||
router.back()
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user