mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-25 09:13:05 +08:00
Fix project export success flash [SCI-10525]
This commit is contained in:
parent
182a2e8935
commit
c6d0f0af99
1 changed files with 1 additions and 1 deletions
|
@ -337,7 +337,7 @@ export default {
|
||||||
project_folder_ids: rows.filter((row) => row.folder).map((row) => row.id)
|
project_folder_ids: rows.filter((row) => row.folder).map((row) => row.id)
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
this.reloadingTable = true;
|
this.reloadingTable = true;
|
||||||
HelperModule.flashAlertMsg(response.data.message, 'success');
|
HelperModule.flashAlertMsg(response.data.flash, 'success');
|
||||||
}).catch((error) => {
|
}).catch((error) => {
|
||||||
HelperModule.flashAlertMsg(error.response.data.error, 'danger');
|
HelperModule.flashAlertMsg(error.response.data.error, 'danger');
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue