Skip to content

Commit

Permalink
#499 small adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Norman Eremic committed Sep 9, 2016
1 parent 07e1f3a commit 767f029
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions client/lib/common/src/components/pure/Chart.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,9 @@ const transformData = function(inData, startDate) {
return dataSeries;
};

const TOOLTIP = (param) => <div style={{backgroundColor: GREY}}>{param}</div>;
const TOOLTIP = param => <div style={{backgroundColor: GREY}}>{param}</div>;

const COLOR_SCALE = function(param) {
return BLUE;
};
const COLOR_SCALE = () => BLUE;

const FORMATTER_ONLY_INTEGERS = function(number) {
return number == Math.floor(number) ? number : null;
Expand Down

0 comments on commit 767f029

Please sign in to comment.