Repository: ambari Updated Branches: refs/heads/trunk 64c673a98 -> 6c2447d0e
AMBARI-4916 'Start All' button is enabled if all services are started (reopen). (ababiichuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/6c2447d0 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/6c2447d0 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/6c2447d0 Branch: refs/heads/trunk Commit: 6c2447d0ebbd068938ebdbe2ae059952ae7d6dc9 Parents: 64c673a Author: aBabiichuk <[email protected]> Authored: Mon Mar 17 14:03:37 2014 +0200 Committer: aBabiichuk <[email protected]> Committed: Mon Mar 17 14:03:37 2014 +0200 ---------------------------------------------------------------------- ambari-web/app/models/service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/6c2447d0/ambari-web/app/models/service.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/models/service.js b/ambari-web/app/models/service.js index 714d9be..e3ef8f0 100644 --- a/ambari-web/app/models/service.js +++ b/ambari-web/app/models/service.js @@ -61,7 +61,7 @@ App.Service = DS.Model.extend({ }.property('workStatus'), isClientsOnly: function() { - var clientsOnly = ['SQOOP','PIG','TEZ']; + var clientsOnly = ['SQOOP','PIG','TEZ','HCATALOG']; return clientsOnly.contains(this.get('serviceName')); }.property('serviceName'),
