Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
handle case where axis id is undefined
however there's a funny case when running ./test/image/mocks/sunburst_with-without_values.json where xAx (local function) gets passed an array in ./src/components/shapes/defaults.js (it expects a string or undefined). So we still need to solve this.
- Loading branch information
Showing
with
8 additions
and 3 deletions.
- +1 −0 .gitignore
- +6 −2 src/components/shapes/defaults.js
- +1 −1 src/plots/cartesian/axis_ids.js
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,6 +7,7 @@ build/* | ||
npm-debug.log* | ||
*.sublime* | ||
*~ | ||
tags | ||
|
||
.* | ||
!.circleci | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters