Fixed saving

This commit is contained in:
Henry 2015-11-12 17:05:43 -08:00
parent 51abd1fadf
commit 564a822423

@ -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()});
}
}