Make sure these boxes are checked before submitting your issue - thank you!
24.0
In the pivot table viz when clicking oh the group by or column drop down the values should render in the drop down .
But the values do not render in the drop down . It displays a blank dropdown .
when exploring the code i could see that , the column option gets an additional object timeColumnOption from /explore/stores/control.jsx along with the columns from the datasource.
`const timeColumnOption = {
verbose_name: 'Time',
column_name: '__timestamp',
description: t(
'A reference to the [Time] configuration, taking granularity into ' +
'account'),
};
if (control && control.includeTime) {
newState.options.push(timeColumnOption);
}`
this sets the column type to be undefined which throws the error in ColumnTypeLabel . Commenting the above code in the control.jsx worked for me . But am not sure whether thats the correct approach .
I can confirm this is also an issue for me.
Same problem here.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. For admin, please label this issue .pinned
to prevent stale bot from closing the issue.
Most helpful comment
I can confirm this is also an issue for me.