Skip to content

Commit

Permalink
[ML] fix isXAxisLabelVisible
Browse files Browse the repository at this point in the history
  • Loading branch information
darnautov committed Jun 3, 2021
1 parent 3a4443f commit 3cb6b14
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,9 @@ export const getHeatmapVisualization = ({
? [state.gridConfig.yAxisLabelColor]
: [],
// X-axis
isXAxisLabelVisible: [state.gridConfig.isXAxisLabelVisible],
isXAxisLabelVisible: state.gridConfig.isXAxisLabelVisible
? [state.gridConfig.isXAxisLabelVisible]
: [],
},
},
],
Expand Down

0 comments on commit 3cb6b14

Please sign in to comment.