From 58f9659cf6a11aade9f904e783561de3ec58da46 Mon Sep 17 00:00:00 2001 From: Min Idzelis Date: Sun, 19 Oct 2025 12:01:42 -0400 Subject: [PATCH] fix: blank page on assetviewer to timeline (regression) (#23073) --- web/src/lib/components/timeline/Timeline.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/lib/components/timeline/Timeline.svelte b/web/src/lib/components/timeline/Timeline.svelte index 76f360a8c0..f94926ab26 100644 --- a/web/src/lib/components/timeline/Timeline.svelte +++ b/web/src/lib/components/timeline/Timeline.svelte @@ -154,6 +154,9 @@ // If the asset is already visible, then don't scroll. if (assetIsVisible(height)) { + // need to update window positions/intersections because since the + // went from invisible to visible + timelineManager.updateSlidingWindow(); return true; }