diff --git a/platform/commonUI/edit/src/actions/SaveAction.js b/platform/commonUI/edit/src/actions/SaveAction.js index 9dec2f39aa..02589af79c 100644 --- a/platform/commonUI/edit/src/actions/SaveAction.js +++ b/platform/commonUI/edit/src/actions/SaveAction.js @@ -125,7 +125,7 @@ define( .getObjects([domainObject.getModel().location]) .then(function(objs){ return doWizardSave(domainObject, objs[domainObject.getModel().location])}); } else { - return domainObject.getCapability("editor").save(); + return domainObject.getCapability("editor").save().then(function(){return domainObject.getOriginalObject()}); } }