From 1e60d5ada0efa17d2df372bbe04a60e28d70257d Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 1 Sep 2026 13:55:00 +0300 Subject: [PATCH] fix reloadNeeded --- src/stores/timelines.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/stores/timelines.js b/src/stores/timelines.js index 801773874..afee57ddd 100644 --- a/src/stores/timelines.js +++ b/src/stores/timelines.js @@ -454,8 +454,10 @@ export const useTimelinesStore = defineStore('timelines', { this[timeline].reloadNeeded = true }, requireReloadAll() { - Object.keys(this).forEach((timeline) => { - this[timeline].reloadNeeded = true + TIMELINES.forEach((timelineName) => { + const timeline = this[timelineName] + + timeline.reloadNeeded = true }) },