Skip to content

Commit

Permalink
[timelion] Secondary y-axis no longer removes config on first axis
Browse files Browse the repository at this point in the history
Backports PR #9197

**Commit 1:**
fixing timelion Y axis #9114

* Original sha: 54107d6
* Authored by ppisljar <[email protected]> on 2016-11-23T09:37:52Z
  • Loading branch information
elastic-jasper committed Nov 23, 2016
1 parent 269ee06 commit da63882
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ module.exports = function timechartFn(Private, config, $rootScope, timefilter, $
// This is kind of gross, it means that you can't replace a global value with a null
// best you can do is an empty string. Deal with it.
if (objVal == null) return srcVal;
if (srcVal == null) return objVal;
});
}

Expand Down

0 comments on commit da63882

Please sign in to comment.