Skip to content

Commit

Permalink
SF | Fixes #903
Browse files Browse the repository at this point in the history
  • Loading branch information
matuzalemsteles committed May 17, 2018
1 parent e08c01e commit fd873fb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/clay-charts/src/ChartBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -822,14 +822,14 @@ ChartBase.STATE = {
* @type {?(Object|undefined)}
*/
bar: Config.shapeOf({
width: Config.oneOfType(
Config.number(),
width: Config.oneOfType([
Config.number(),
Config.shapeOf({
max: config.number()
max: Config.number(),
ratio: Config.number(),
})
),
padding: Config.number()
}),
]),
padding: Config.number(),
zerobased: Config.bool(),
}),

Expand Down

0 comments on commit fd873fb

Please sign in to comment.