mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
added dashboard uid when tracing header in browsermode (#53232)
This commit is contained in:
@@ -33,7 +33,13 @@ export function PanelEditorTableView({ width, height, panel, dashboard }: Props)
|
||||
const timeData = applyPanelTimeOverrides(panel, timeSrv.timeRange());
|
||||
|
||||
const sub = panel.events.subscribe(RefreshEvent, () => {
|
||||
panel.runAllPanelQueries(dashboard.id, dashboard.getTimezone(), timeData, width);
|
||||
panel.runAllPanelQueries({
|
||||
dashboardId: dashboard.id,
|
||||
dashboardUID: dashboard.uid,
|
||||
dashboardTimezone: dashboard.getTimezone(),
|
||||
timeData,
|
||||
width,
|
||||
});
|
||||
});
|
||||
return () => {
|
||||
sub.unsubscribe();
|
||||
|
||||
Reference in New Issue
Block a user