From 1e86e8c4d545c3bac76b90f0068ec693c0d1ec64 Mon Sep 17 00:00:00 2001 From: Kelly Yang <124ykl@gmail.com> Date: Wed, 4 Mar 2026 12:58:57 -0800 Subject: [PATCH] [Bug] Node preview images are lost when switching between multiple workflow tabs (#9380) ## Summary When working with multiple workflow tabs, the internal preview (image thumbnail) of nodes like Load Image disappears after navigating away from and back to a tab. This affects all active tabs once the switch occurs. ## Screenshot before https://github.com/user-attachments/assets/99466123-37db-406f-9e17-0a9ff22311c3 after https://github.com/user-attachments/assets/bdad0ef1-72b7-46c7-aa61-0a557688e55e --------- Co-authored-by: Alexander Brown --- src/scripts/changeTracker.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripts/changeTracker.ts b/src/scripts/changeTracker.ts index d4727424fb..0331079cd9 100644 --- a/src/scripts/changeTracker.ts +++ b/src/scripts/changeTracker.ts @@ -77,6 +77,7 @@ export class ChangeTracker { scale: app.canvas.ds.scale, offset: [app.canvas.ds.offset[0], app.canvas.ds.offset[1]] } + this.nodeOutputs = clone(app.nodeOutputs) const navigation = useSubgraphNavigationStore().exportState() // Always store the navigation state, even if empty (root level) this.subgraphState = { navigation }