mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Rendering: Fix panel rendered count on error (#67027)
Rendering: fix panel rendered count on error
This commit is contained in:
@@ -445,7 +445,7 @@ export class PanelStateWrapper extends PureComponent<Props, State> {
|
||||
};
|
||||
|
||||
shouldSignalRenderingCompleted(loadingState: LoadingState, pluginMeta: PanelPluginMeta) {
|
||||
return loadingState === LoadingState.Done || pluginMeta.skipDataQuery;
|
||||
return loadingState === LoadingState.Done || loadingState === LoadingState.Error || pluginMeta.skipDataQuery;
|
||||
}
|
||||
|
||||
skipFirstRender(loadingState: LoadingState) {
|
||||
|
||||
Reference in New Issue
Block a user