diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/TrashManager/TrashManagerController.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/TrashManager/TrashManagerController.js index 0812adfb81dbb03f73fc73132a686fe2889979d1..dca3ea90fbf78c81f244d1dc39385ec6e876b5fd 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/TrashManager/TrashManagerController.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/TrashManager/TrashManagerController.js @@ -21,15 +21,23 @@ function TrashManagerController(mainController) { this.revertDeletions = function(deletionIds) { mainController.serverFacade.revertDeletions(deletionIds, function(data) { - Util.showSuccess("Deletions Reverted.", function() {}); - mainController.changeView('showTrashcanPage', null); + if(data.error) { + Util.showError(data.error.message, null, true, true, false, true); + } else { + Util.showSuccess("Deletions Reverted.", function() {}); + mainController.changeView('showTrashcanPage', null); + } }); } this.deletePermanently = function(deletionIds) { mainController.serverFacade.deletePermanently(deletionIds, function(data) { - Util.showSuccess("Permanently Deleted."); - mainController.changeView('showTrashcanPage', null); + if(data.error) { + Util.showError(data.error.message, null, true, true, false, true); + } else { + Util.showSuccess("Permanently Deleted."); + mainController.changeView('showTrashcanPage', null); + } }); }