Skip to content

Commit

Permalink
Merge pull request #908 from matuzalemsteles/FixGridXYLinesValue
Browse files Browse the repository at this point in the history
Changes the validation of grid.x.lines.value and grid.y.lines.value to any | Fixes #907
  • Loading branch information
jbalsas authored May 22, 2018
2 parents 9b68042 + aaec012 commit b9f6ca1
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 @@ -995,7 +995,7 @@ ChartBase.STATE = {
class: Config.string(),
position: Config.oneOf(['start', 'middle', 'end']),
text: Config.string(),
value: Config.string(),
value: Config.any(),
})
),
}),
Expand All @@ -1006,7 +1006,7 @@ ChartBase.STATE = {
class: Config.string(),
position: Config.oneOf(['start', 'middle', 'end']),
text: Config.string(),
value: Config.string(),
value: Config.any(),
})
),
}),
Expand Down

0 comments on commit b9f6ca1

Please sign in to comment.