Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4ACEC200BC2 for ; Thu, 17 Nov 2016 19:01:53 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 4A772160B0F; Thu, 17 Nov 2016 18:01:53 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 95E0E160AD8 for ; Thu, 17 Nov 2016 19:01:52 +0100 (CET) Received: (qmail 67484 invoked by uid 500); 17 Nov 2016 18:01:51 -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 67475 invoked by uid 99); 17 Nov 2016 18:01:51 -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; Thu, 17 Nov 2016 18:01:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B236EE0FC4; Thu, 17 Nov 2016 18:01:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: atkach@apache.org To: commits@ambari.apache.org Message-Id: <2134e741d7794afdaa24a79183acbac8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: ambari git commit: AMBARI-18914 Bulk property mode doesnt throw any error on UI while adding an existing property. (atkach) Date: Thu, 17 Nov 2016 18:01:51 +0000 (UTC) archived-at: Thu, 17 Nov 2016 18:01:53 -0000 Repository: ambari Updated Branches: refs/heads/branch-2.5 246b53116 -> 1180e0a3a AMBARI-18914 Bulk property mode doesnt throw any error on UI while adding an existing property. (atkach) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/1180e0a3 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/1180e0a3 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/1180e0a3 Branch: refs/heads/branch-2.5 Commit: 1180e0a3a48a2c02a00ae89383f6be8c69c150e4 Parents: 246b531 Author: Andrii Tkach Authored: Thu Nov 17 17:37:27 2016 +0200 Committer: Andrii Tkach Committed: Thu Nov 17 20:01:25 2016 +0200 ---------------------------------------------------------------------- .../app/views/common/configs/service_configs_by_category_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/1180e0a3/ambari-web/app/views/common/configs/service_configs_by_category_view.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/common/configs/service_configs_by_category_view.js b/ambari-web/app/views/common/configs/service_configs_by_category_view.js index d916adf..b8a0d1f 100644 --- a/ambari-web/app/views/common/configs/service_configs_by_category_view.js +++ b/ambari-web/app/views/common/configs/service_configs_by_category_view.js @@ -597,7 +597,7 @@ App.ServiceConfigsByCategoryView = Em.View.extend(App.UserPref, App.ConfigOverri } else { errorMessages.push(this.lineNumber(index) + Em.I18n.t('form.validator.configKey.specific').format(key)); } - }); + }, this); if (errorMessages.length > 0) { callback(errorMessages.join('
'), parsedConfig);