diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 8548ec99..998430be 100644 --- a/public/mix-manifest.json +++ b/public/mix-manifest.json @@ -105,5 +105,6 @@ "/js/main.268e01e2707ba913b54a.hot-update.js": "/js/main.268e01e2707ba913b54a.hot-update.js", "/js/main.2a50a80f76caea55a33a.hot-update.js": "/js/main.2a50a80f76caea55a33a.hot-update.js", "/js/main.ade42529098f9d0de662.hot-update.js": "/js/main.ade42529098f9d0de662.hot-update.js", - "/js/main.f79e25758f970137eb5d.hot-update.js": "/js/main.f79e25758f970137eb5d.hot-update.js" + "/js/main.f79e25758f970137eb5d.hot-update.js": "/js/main.f79e25758f970137eb5d.hot-update.js", + "/js/main.efbfa4aa474d3c507790.hot-update.js": "/js/main.efbfa4aa474d3c507790.hot-update.js" } diff --git a/resources/js/store/modules/fileFunctions.js b/resources/js/store/modules/fileFunctions.js index 731b3a0f..f9d93f8f 100644 --- a/resources/js/store/modules/fileFunctions.js +++ b/resources/js/store/modules/fileFunctions.js @@ -45,7 +45,10 @@ const actions = { ? '/api/zip/public/' + router.currentRoute.params.token : '/api/zip' - commit('ZIPPING_FILE_STATUS', true) + commit('PROCESSING_POPUP', { + title: i18n.t('popup_zipping.title'), + message: i18n.t('popup_zipping.message'), + }) axios.post(route, { files: files @@ -57,7 +60,7 @@ const actions = { Vue.prototype.$isSomethingWrong() }) .finally(() => { - commit('ZIPPING_FILE_STATUS', false) + commit('PROCESSING_POPUP', undefined) }) }, moveItem: ({ commit, getters, dispatch }, { to_item, noSelectedItem }) => {