From commits-return-1643-archive-asf-public=cust-asf.ponee.io@superset.incubator.apache.org Thu Oct 11 22:08:34 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id F17AE18064A for ; Thu, 11 Oct 2018 22:08:33 +0200 (CEST) Received: (qmail 48796 invoked by uid 500); 11 Oct 2018 20:08:33 -0000 Mailing-List: contact commits-help@superset.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@superset.incubator.apache.org Delivered-To: mailing list commits@superset.incubator.apache.org Received: (qmail 48787 invoked by uid 99); 11 Oct 2018 20:08:33 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Oct 2018 20:08:33 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 8BE7485B06; Thu, 11 Oct 2018 20:08:32 +0000 (UTC) Date: Thu, 11 Oct 2018 20:08:32 +0000 To: "commits@superset.apache.org" Subject: [incubator-superset] branch master updated: Fix the horizon title only show the first key (#5998) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153928851231.26721.6453027813145595126@gitbox.apache.org> From: graceguo@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-superset X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 5c5be825d9c9f7f25f1b3d90ff991f24d1a0c175 X-Git-Newrev: c0f685b640932bb051188e38654d1e15452b7e37 X-Git-Rev: c0f685b640932bb051188e38654d1e15452b7e37 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. graceguo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-superset.git The following commit(s) were added to refs/heads/master by this push: new c0f685b Fix the horizon title only show the first key (#5998) c0f685b is described below commit c0f685b640932bb051188e38654d1e15452b7e37 Author: Narcissus7 <18813104077@163.com> AuthorDate: Fri Oct 12 04:08:26 2018 +0800 Fix the horizon title only show the first key (#5998) --- superset/assets/src/visualizations/Horizon/HorizonChart.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/assets/src/visualizations/Horizon/HorizonChart.jsx b/superset/assets/src/visualizations/Horizon/HorizonChart.jsx index 1bc1e05..f9bb05a 100644 --- a/superset/assets/src/visualizations/Horizon/HorizonChart.jsx +++ b/superset/assets/src/visualizations/Horizon/HorizonChart.jsx @@ -62,7 +62,7 @@ class HorizonChart extends React.PureComponent { key={row.key} width={width} height={seriesHeight} - title={row.key[0]} + title={row.key.join(', ')} data={row.values} bands={bands} colors={colors}