diff --git a/public/app/features/dashboard/components/TransformationsEditor/TransformationOperationRow.tsx b/public/app/features/dashboard/components/TransformationsEditor/TransformationOperationRow.tsx index e34c93ab6d9..94b4964fc6a 100644 --- a/public/app/features/dashboard/components/TransformationsEditor/TransformationOperationRow.tsx +++ b/public/app/features/dashboard/components/TransformationsEditor/TransformationOperationRow.tsx @@ -45,7 +45,7 @@ export const TransformationOperationRow = ({ const disabled = !!configs[index].transformation.disabled; const topic = configs[index].transformation.topic; const showFilterEditor = configs[index].transformation.filter != null || topic != null; - const showFilterToggle = showFilterEditor || data.series.length > 1 || (data.annotations?.length ?? 0) > 0; + const showFilterToggle = showFilterEditor || data.series.length > 0 || (data.annotations?.length ?? 0) > 0; const onDisableToggle = useCallback( (index: number) => {