From 6108587c8b315fe1d8a122bc343d3a719b2c5b1f Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 5 Mar 2025 13:36:56 -0600 Subject: [PATCH] fix(web): show tags timeline (#16617) * fix(web): show tags timeline * fix(web): show tags timeline --- web/src/lib/stores/assets-store.svelte.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/src/lib/stores/assets-store.svelte.ts b/web/src/lib/stores/assets-store.svelte.ts index f4cedde317..7bfaefa309 100644 --- a/web/src/lib/stores/assets-store.svelte.ts +++ b/web/src/lib/stores/assets-store.svelte.ts @@ -423,6 +423,12 @@ export class AssetStore { this.setOptions(options); return; } + + // Make sure to re-initialize if the tagId changes + if (this.options.tagId === options.tagId) { + this.setOptions(options); + return; + } // TODO: don't call updateObjects frequently after // init - cancelation of the initialize tasks isn't // performed right now, and will cause issues if