TimeSeries: Explicitly add transformer when timeseries-long exists (#64092)

This commit is contained in:
Ryan McKinley
2023-04-27 20:10:02 -07:00
committed by GitHub
parent 21f6414f13
commit f5d97c677b
9 changed files with 959 additions and 11 deletions

View File

@ -1,6 +1,6 @@
import React from 'react';
import { FieldConfigSource, PanelData } from '@grafana/data';
import { FieldConfigSource, PanelData, VisualizationSuggestion } from '@grafana/data';
/**
* Describes the properties that can be passed to the PanelDataErrorView.
@ -15,7 +15,7 @@ export interface PanelDataErrorViewProps {
needsTimeField?: boolean;
needsNumberField?: boolean;
needsStringField?: boolean;
// suggestions?: VisualizationSuggestion[]; <<< for sure optional
suggestions?: VisualizationSuggestion[];
}
/**