From commits-return-748-archive-asf-public=cust-asf.ponee.io@superset.incubator.apache.org Sat Mar 10 00:31:38 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 50087180676 for ; Sat, 10 Mar 2018 00:31:38 +0100 (CET) Received: (qmail 27603 invoked by uid 500); 9 Mar 2018 23:31:37 -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 27594 invoked by uid 99); 9 Mar 2018 23:31:37 -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; Fri, 09 Mar 2018 23:31:37 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id D742C808A0; Fri, 9 Mar 2018 23:31:36 +0000 (UTC) Date: Fri, 09 Mar 2018 23:31:36 +0000 To: "commits@superset.apache.org" Subject: [incubator-superset] branch master updated: histograms: fixup left margin assigment (#4532) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152063829671.31811.17600015050902733960@gitbox.apache.org> From: maximebeauchemin@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: 16470044863555b42bfb2aaddecce68b589d0da1 X-Git-Newrev: f9881101ee9cd447f7ccb2d38bc7563f31f686c5 X-Git-Rev: f9881101ee9cd447f7ccb2d38bc7563f31f686c5 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. maximebeauchemin 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 f988110 histograms: fixup left margin assigment (#4532) f988110 is described below commit f9881101ee9cd447f7ccb2d38bc7563f31f686c5 Author: Riccardo Magliocchetti AuthorDate: Sat Mar 10 00:31:34 2018 +0100 histograms: fixup left margin assigment (#4532) --- superset/assets/visualizations/histogram.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/superset/assets/visualizations/histogram.js b/superset/assets/visualizations/histogram.js index b4bf6fc..2f29231 100644 --- a/superset/assets/visualizations/histogram.js +++ b/superset/assets/visualizations/histogram.js @@ -13,12 +13,11 @@ function histogram(slice, payload) { const draw = function () { // Set Margins - const left = yAxisLabel ? 70 : 50; const margin = { top: 50, right: 10, bottom: 20, - left, + left: yAxisLabel ? 70 : 50, }; const navBarHeight = 36; const navBarBuffer = 10; -- To stop receiving notification emails like this one, please contact maximebeauchemin@apache.org.