mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
added email notification about fulfilling upload request
This commit is contained in:
2
resources/js/store/modules/uploadRequest.js
vendored
2
resources/js/store/modules/uploadRequest.js
vendored
@@ -42,7 +42,7 @@ const actions = {
|
||||
resolve(response)
|
||||
|
||||
// Stop loading spinner
|
||||
if (response.data.data.attributes.status === 'active')
|
||||
if (['active', 'filled', 'expired'].includes(response.data.data.attributes.status) )
|
||||
commit('LOADING_STATE', { loading: false, data: [] })
|
||||
|
||||
commit('SET_UPLOAD_REQUEST', response.data)
|
||||
|
||||
Reference in New Issue
Block a user