From 01ddc1d6c6edfbf0d071cd389819f85d918ad47d Mon Sep 17 00:00:00 2001 From: Katokoda <79760461+Katokoda@users.noreply.github.com> Date: Mon, 8 Jun 2026 21:52:37 +0200 Subject: [PATCH] Fix aliance renewal question (extension-prompt) staying open (#4196) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > **Before opening a PR:** discuss new features on [Discord](https://discord.gg/K9zernJB5z) first, and file bugs or small improvements as [issues](https://github.com/openfrontio/OpenFrontIO/issues/new/choose). You must be assigned to an `approved` issue — unsolicited PRs will be auto-closed. **Add approved & assigned issue number here:** Resolves #4164 ## Description: Single line change, making sure the ActionableEvent is updated after removing the alliance that just ended. ## Please complete the following: - [x] I have added screenshots for all UI updates -# There are none - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file -# There are none - [x] I have added relevant tests to the test directory -# I do not know how I would to it. ## Please put your Discord username so you can be contacted if a bug or regression is found: Katokoda --- src/client/hud/layers/ActionableEvents.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/hud/layers/ActionableEvents.ts b/src/client/hud/layers/ActionableEvents.ts index c5831722d..f016c7eec 100644 --- a/src/client/hud/layers/ActionableEvents.ts +++ b/src/client/hud/layers/ActionableEvents.ts @@ -185,6 +185,7 @@ export class ActionableEvents extends LitElement implements Controller { if (!currentAllianceIds.has(allianceId)) { this.removeAllianceRenewalEvents(allianceId); this.alliancesCheckedAt.delete(allianceId); + this.requestUpdate(); } } }