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.
2 parents 2a44bd5 + 3aaf86b commit 72da70dCopy full SHA for 72da70d
frontend/src/app/components/ChartEditor.tsx
@@ -339,7 +339,11 @@ export const ChartEditor: FC<ChartEditorProps> = ({
339
setAllowQuery(payload.needRefresh);
340
return true;
341
}
342
- if (payload.value.type !== ChartDataSectionType.FILTER) {
+ // generate runtime computed fields(date level)
343
+ if (
344
+ payload.value.type === ChartDataSectionType.GROUP ||
345
+ payload.value.type === ChartDataSectionType.MIXED
346
+ ) {
347
const dateLevelComputedFields = payload.value.rows.filter(
348
v => v.category === ChartDataViewFieldCategory.DateLevelComputedField,
349
);
0 commit comments