mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Transformations: Show filter for single query (#94238)
This commit is contained in:
parent
099055e8a5
commit
4ec75bcc60
@ -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) => {
|
||||
|
Loading…
Reference in New Issue
Block a user