PanelInspector: Always use the latest panel data (#77732)

PanelInspector: Always use the latest panel data
This commit is contained in:
Dominik Prokop 2023-11-06 16:35:20 +01:00 committed by GitHub
parent e6bdf0029d
commit dff8dc86d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ const PanelInspectorUnconnected = ({ panel, dashboard, plugin }: Props) => {
withFieldConfig: true,
});
const { data, isLoading, hasError } = usePanelLatestData(panel, dataOptions, true);
const { data, isLoading, hasError } = usePanelLatestData(panel, dataOptions, false);
const metaDs = useDatasourceMetadata(data);
const tabs = useInspectTabs(panel, dashboard, plugin, hasError, metaDs);