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 47C58200C13 for ; Mon, 6 Feb 2017 12:15:55 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 466E0160B53; Mon, 6 Feb 2017 11:15:55 +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 8F9EC160B49 for ; Mon, 6 Feb 2017 12:15:54 +0100 (CET) Received: (qmail 59315 invoked by uid 500); 6 Feb 2017 11:15:53 -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 59306 invoked by uid 99); 6 Feb 2017 11:15:53 -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, 06 Feb 2017 11:15:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7CD46DFCA3; Mon, 6 Feb 2017 11:15:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: onechiporenko@apache.org To: commits@ambari.apache.org Message-Id: <3ad5d28229164e0cba24d5c7eb2142cf@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: ambari git commit: AMBARI-19876. Popup with alerts on the Service summary doesn't have arrows for alerts with state "None" (onechiporenko) Date: Mon, 6 Feb 2017 11:15:53 +0000 (UTC) archived-at: Mon, 06 Feb 2017 11:15:55 -0000 Repository: ambari Updated Branches: refs/heads/trunk 113de54e2 -> e71f3a97a AMBARI-19876. Popup with alerts on the Service summary doesn't have arrows for alerts with state "None" (onechiporenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/e71f3a97 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/e71f3a97 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/e71f3a97 Branch: refs/heads/trunk Commit: e71f3a97af080a3b03335be5606aeaa1aa73085d Parents: 113de54 Author: Oleg Nechiporenko Authored: Mon Feb 6 11:32:12 2017 +0200 Committer: Oleg Nechiporenko Committed: Mon Feb 6 11:32:12 2017 +0200 ---------------------------------------------------------------------- ambari-web/app/controllers/main/service/info/summary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/e71f3a97/ambari-web/app/controllers/main/service/info/summary.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/main/service/info/summary.js b/ambari-web/app/controllers/main/service/info/summary.js index 9bdf83a..0ca9775 100644 --- a/ambari-web/app/controllers/main/service/info/summary.js +++ b/ambari-web/app/controllers/main/service/info/summary.js @@ -394,9 +394,9 @@ App.MainServiceInfoSummaryController = Em.Controller.extend(App.WidgetSectionMix }; serviceDefinitions.forEach(function (definition) { + definition.set('isCollapsed', true); Object.keys(definitionTypes).forEach(function (type) { if (definition.get(type)) { - definition.set('isCollapsed', true); definitionTypes[type].push(definition); serviceDefinitions = serviceDefinitions.without(definition); }