From f8114ba6b6bd7cee2617378e08314e96421de222 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Tue, 12 Jan 2016 18:23:30 -0800 Subject: [PATCH] [Frontend] Mods to allow plot tick labels to ellipsis to left open #337 Fixing code due to circleci fail in pull request; --- platform/features/plot/src/elements/PlotTickGenerator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/features/plot/src/elements/PlotTickGenerator.js b/platform/features/plot/src/elements/PlotTickGenerator.js index 61f2faf827..2259041d54 100644 --- a/platform/features/plot/src/elements/PlotTickGenerator.js +++ b/platform/features/plot/src/elements/PlotTickGenerator.js @@ -67,7 +67,7 @@ define( tickVal = tickVal.split('').reverse().join(''); result.push({ //If data to show, display label for each tick line, otherwise show lines but suppress labels. - label: span > 0 ? : '' + label: span > 0 ? tickVal : '' }); }