We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57dd8ba commit 6288327Copy full SHA for 6288327
2 files changed
src/components/fields/AxesSelector.js
@@ -31,7 +31,7 @@ class AxesSelector extends Component {
31
option.value === 'allaxes'
32
? option
33
: {
34
- label: option.title,
+ label: option.title.text,
35
value: option.value,
36
}
37
)
src/lib/getAllAxes.js
@@ -84,7 +84,7 @@ export function getAxisTitle(axis) {
84
const subplotNumber = getAxisNumber(axis) || 1;
85
86
return axis._input && axis._input.title
87
- ? striptags(`${axisType}: ${axis._input.title}`)
+ ? striptags(`${axisType}: ${axis._input.title.text}`)
88
: striptags(`${axisType} ${subplotNumber}`);
89
90
0 commit comments