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 5946942 commit 4b0043aCopy full SHA for 4b0043a
frontend/src/app/components/ChartEditor.tsx
@@ -339,7 +339,10 @@ export const ChartEditor: FC<ChartEditorProps> = ({
339
setAllowQuery(payload.needRefresh);
340
return true;
341
}
342
- if (payload.value.type !== ChartDataSectionType.FILTER) {
+ if (
343
+ payload.value.type === ChartDataSectionType.GROUP ||
344
+ payload.value.type === ChartDataSectionType.MIXED
345
+ ) {
346
const dateLevelComputedFields = payload.value.rows.filter(
347
v => v.category === ChartDataViewFieldCategory.DateLevelComputedField,
348
);
0 commit comments