From 44dc208339a60801bd175b7518bd1f22f0817b10 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Wed, 18 Feb 2026 15:29:00 -0800 Subject: [PATCH] fix: app mode gets stale assets history (#8918) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8918-app-mode-fix-stale-assets-history-3096d73d36508114b81df071d7289c23) by [Unito](https://www.unito.io) --- src/views/GraphView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/GraphView.vue b/src/views/GraphView.vue index cedc378289..c5ef565de7 100644 --- a/src/views/GraphView.vue +++ b/src/views/GraphView.vue @@ -220,7 +220,7 @@ const onExecutionSuccess = async () => { await queueStore.update() // Only update assets if the assets sidebar is currently open // When sidebar is closed, AssetsSidebarTab.vue will refresh on mount - if (sidebarTabStore.activeSidebarTabId === 'assets') { + if (sidebarTabStore.activeSidebarTabId === 'assets' || linearMode.value) { await assetsStore.updateHistory() } }