fix reloadNeeded
This commit is contained in:
parent
39f7d522e3
commit
1e60d5ada0
1 changed files with 4 additions and 2 deletions
|
|
@ -454,8 +454,10 @@ export const useTimelinesStore = defineStore('timelines', {
|
||||||
this[timeline].reloadNeeded = true
|
this[timeline].reloadNeeded = true
|
||||||
},
|
},
|
||||||
requireReloadAll() {
|
requireReloadAll() {
|
||||||
Object.keys(this).forEach((timeline) => {
|
TIMELINES.forEach((timelineName) => {
|
||||||
this[timeline].reloadNeeded = true
|
const timeline = this[timelineName]
|
||||||
|
|
||||||
|
timeline.reloadNeeded = true
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue