fix: 🐛 sync tab when getting last timeline

This commit is contained in:
ThatOneCalculator 2022-09-07 15:40:25 -07:00
parent 045fc9e1ee
commit da112b181f

View file

@ -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));