Repository: ambari Updated Branches: refs/heads/trunk 7c3015fee -> a1bd8610a
AMBARI-10574. Configs: saving config does not save note (alexantonenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/a1bd8610 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/a1bd8610 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/a1bd8610 Branch: refs/heads/trunk Commit: a1bd8610a3c2b2a7a3b709c397547e43ddecd4b1 Parents: 7c3015f Author: Alex Antonenko <[email protected]> Authored: Sat Apr 18 22:16:49 2015 +0300 Committer: Alex Antonenko <[email protected]> Committed: Sat Apr 18 22:29:09 2015 +0300 ---------------------------------------------------------------------- ambari-web/app/views/common/configs/config_history_flow.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/a1bd8610/ambari-web/app/views/common/configs/config_history_flow.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/common/configs/config_history_flow.js b/ambari-web/app/views/common/configs/config_history_flow.js index e0bcff1..f6f1e24 100644 --- a/ambari-web/app/views/common/configs/config_history_flow.js +++ b/ambari-web/app/views/common/configs/config_history_flow.js @@ -489,6 +489,7 @@ App.ConfigHistoryFlowView = Em.View.extend({ secondary: Em.I18n.t('common.cancel'), onSave: function () { self.get('controller').set('serviceConfigVersionNote', this.get('serviceConfigNote')); + self.get('controller').set('serviceConfigNote', this.get('serviceConfigNote')) var newVersionToBeCreated = App.ServiceConfigVersion.find().filterProperty('serviceName', self.get('serviceName')).get('length') + 1; self.get('controller').set('preSelectedConfigVersion', Em.Object.create({ version: newVersionToBeCreated,
