Merge pull request #7385 from sboursen-scinote/sb_SCI-10525

Fix project export success flash [SCI-10525]
This commit is contained in:
aignatov-bio 2024-03-27 16:56:52 +01:00 committed by GitHub
commit 4642e5c7ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -337,7 +337,7 @@ export default {
project_folder_ids: rows.filter((row) => row.folder).map((row) => row.id)
}).then((response) => {
this.reloadingTable = true;
HelperModule.flashAlertMsg(response.data.message, 'success');
HelperModule.flashAlertMsg(response.data.flash, 'success');
}).catch((error) => {
HelperModule.flashAlertMsg(error.response.data.error, 'danger');
});