Return-Path: X-Original-To: apmail-ambari-commits-archive@www.apache.org Delivered-To: apmail-ambari-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A906C18947 for ; Mon, 19 Oct 2015 15:06:03 +0000 (UTC) Received: (qmail 85414 invoked by uid 500); 19 Oct 2015 15:06:03 -0000 Delivered-To: apmail-ambari-commits-archive@ambari.apache.org Received: (qmail 85345 invoked by uid 500); 19 Oct 2015 15:06:03 -0000 Mailing-List: contact commits-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@ambari.apache.org Delivered-To: mailing list commits@ambari.apache.org Received: (qmail 85336 invoked by uid 99); 19 Oct 2015 15:06:03 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Oct 2015 15:06:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id F22D4E0286; Mon, 19 Oct 2015 15:06:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: akovalenko@apache.org To: commits@ambari.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: ambari git commit: AMBARI-13475. Override for Flume does not work properly (UI). (akovalenko) Date: Mon, 19 Oct 2015 15:06:02 +0000 (UTC) Repository: ambari Updated Branches: refs/heads/trunk 67da040af -> fefa1c44d AMBARI-13475. Override for Flume does not work properly (UI). (akovalenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/fefa1c44 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/fefa1c44 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/fefa1c44 Branch: refs/heads/trunk Commit: fefa1c44d5e8ec7a54ca044f41effb2ec4c5843b Parents: 67da040 Author: Aleksandr Kovalenko Authored: Mon Oct 19 18:03:59 2015 +0300 Committer: Aleksandr Kovalenko Committed: Mon Oct 19 18:03:59 2015 +0300 ---------------------------------------------------------------------- ambari-web/app/controllers/main/service/info/configs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/fefa1c44/ambari-web/app/controllers/main/service/info/configs.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/main/service/info/configs.js b/ambari-web/app/controllers/main/service/info/configs.js index 4cb67a7..8c4b72c 100644 --- a/ambari-web/app/controllers/main/service/info/configs.js +++ b/ambari-web/app/controllers/main/service/info/configs.js @@ -119,7 +119,7 @@ App.MainServiceInfoConfigsController = Em.Controller.extend(App.ConfigsLoader, A canEdit: function () { return (this.get('selectedVersion') == this.get('currentDefaultVersion') || !this.get('selectedConfigGroup.isDefault')) && !this.get('isCompareMode') && App.isAccessible('MANAGER') && !this.get('isHostsConfigsPage'); - }.property('selectedVersion', 'isCompareMode', 'currentDefaultVersion'), + }.property('selectedVersion', 'isCompareMode', 'currentDefaultVersion', 'selectedConfigGroup.isDefault'), serviceConfigs: function () { return App.config.get('preDefinedServiceConfigs');