fix: 🐛 sync tab when getting last timeline
This commit is contained in:
parent
045fc9e1ee
commit
da112b181f
1 changed files with 5 additions and 1 deletions
|
@ -128,7 +128,11 @@ const rootEl = $ref<HTMLElement>();
|
|||
|
||||
let queue = $ref(0);
|
||||
const src = $computed({
|
||||
get: () => defaultStore.reactiveState.tl.value.src,
|
||||
get: () => {
|
||||
const lastSrc = defaultStore.reactiveState.tl.value.src;
|
||||
syncSlide(timelines.indexOf(lastSrc));
|
||||
return lastSrc;
|
||||
},
|
||||
set: (x) => {
|
||||
saveSrc(x);
|
||||
syncSlide(timelines.indexOf(x));
|
||||
|
|
Loading…
Reference in a new issue