Skip to content

Commit

Permalink
Tick count for axisY should expect a number not a bool
Browse files Browse the repository at this point in the history
  • Loading branch information
Kien Do committed Feb 21, 2018
1 parent c39985e commit 2acc483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/clay-charts/src/ChartBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ ChartBase.STATE = {
padding: Config.object().string(),
show: Config.bool(),
tick: Config.shapeOf({
count: Config.bool(),
count: Config.number(),
outer: Config.bool(),
values: Config.array(),
}),
Expand Down Expand Up @@ -1285,4 +1285,4 @@ ChartBase.STATE = {
};

export {bb, d3, ChartBase};
export default ChartBase;
export default ChartBase;

0 comments on commit 2acc483

Please sign in to comment.