Repository: ambari Updated Branches: refs/heads/branch-feature-AMBARI-21450 50dcee739 -> 28ff92552
AMBARI-21344. Add Services Using Repository ID (alexantonenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/28ff9255 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/28ff9255 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/28ff9255 Branch: refs/heads/branch-feature-AMBARI-21450 Commit: 28ff925521cc532505710dc0940cc854a73ac579 Parents: 50dcee7 Author: Alex Antonenko <[email protected]> Authored: Mon Jun 26 17:44:29 2017 +0300 Committer: Alex Antonenko <[email protected]> Committed: Mon Jul 24 18:54:07 2017 +0300 ---------------------------------------------------------------------- ambari-web/app/models/stack.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/28ff9255/ambari-web/app/models/stack.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/models/stack.js b/ambari-web/app/models/stack.js index dbc2d72..122ea5c 100644 --- a/ambari-web/app/models/stack.js +++ b/ambari-web/app/models/stack.js @@ -33,6 +33,8 @@ App.Stack = DS.Model.extend({ operatingSystems: DS.hasMany('App.OperatingSystem'), isSelected: DS.attr('boolean', {defaultValue: false}), + versionInfoId: null, + stackNameVersion: Em.computed.concat('-', 'stackName', 'stackVersion'), isPatch: Em.computed.equal('type', 'PATCH'), @@ -80,4 +82,4 @@ App.Stack = DS.Model.extend({ }); -App.Stack.FIXTURES = []; \ No newline at end of file +App.Stack.FIXTURES = [];
