diff --git a/public/app/features/dashboard/dashgrid/PanelChrome.tsx b/public/app/features/dashboard/dashgrid/PanelChrome.tsx index 8b4b3a79aad..14384eb4e44 100644 --- a/public/app/features/dashboard/dashgrid/PanelChrome.tsx +++ b/public/app/features/dashboard/dashgrid/PanelChrome.tsx @@ -209,7 +209,9 @@ export class PanelChrome extends Component { }); } else { // The panel should render on refresh as well if it doesn't have a query, like clock panel - this.onRender(); + this.setState((prevState) => ({ + data: { ...prevState.data, timeRange: this.timeSrv.timeRange() }, + })); } };