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 <[email protected]> Authored: Mon Oct 19 18:03:59 2015 +0300 Committer: Aleksandr Kovalenko <[email protected]> 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');
