Fix: State timeline tooltip not showing (#40100)

* Fix: State timeline tooltip not showing

* Check transformation instead of refId
This commit is contained in:
Zoltán Bedi
2021-10-13 11:59:03 +02:00
committed by GitHub
parent 23bee50474
commit 7422189a88

View File

@@ -49,7 +49,10 @@ export const StateTimelinePanel: React.FC<TimelinePanelProps> = ({
* Render nothing in this case to prevent error.
* See https://github.com/grafana/support-escalations/issues/932
*/
if (alignedData.fields.length - 1 !== data.length || !alignedData.fields[seriesIdx]) {
if (
(!alignedData.meta?.transformations?.length && alignedData.fields.length - 1 !== data.length) ||
!alignedData.fields[seriesIdx]
) {
return null;
}