SFJS 0.3.63

This commit is contained in:
Mo Bitar
2019-06-03 11:25:25 -05:00
parent e9b57a25f2
commit a503051628
4 changed files with 9 additions and 5 deletions

View File

@@ -33,6 +33,9 @@ class ActionsMenu {
}
action.running = true;
actionsManager.executeAction(action, extension, $scope.item, function(response){
if(!response) {
return;
}
action.running = false;
$scope.handleActionResponse(action, response);

View File

@@ -142,6 +142,7 @@ class ActionsManager {
action.error = false;
handleResponseDecryption(response, await this.authManager.keys(), false);
}, (response) => {
alert("An issue occurred while processing this action. Please try again.");
action.error = true;
customCallback(null);
})