From 7e416a731d01eb0b61bce664739cb19f4d4e2c0e Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 4 Sep 2023 07:14:11 -0400 Subject: [PATCH] [v9.5.x] Annotation List: Fix panel not updating when variable is changed (#66690) --- public/app/plugins/panel/annolist/AnnoListPanel.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/plugins/panel/annolist/AnnoListPanel.tsx b/public/app/plugins/panel/annolist/AnnoListPanel.tsx index 66b6543a9d9..1574e3bfe37 100644 --- a/public/app/plugins/panel/annolist/AnnoListPanel.tsx +++ b/public/app/plugins/panel/annolist/AnnoListPanel.tsx @@ -74,6 +74,7 @@ export class AnnoListPanel extends PureComponent { options !== prevProps.options || this.state.queryTags !== prevState.queryTags || this.state.queryUser !== prevState.queryUser || + prevProps.renderCounter !== this.props.renderCounter || (options.onlyInTimeRange && timeRange !== prevProps.timeRange); if (needsQuery) {