fix: 🐛 go to last timeline selected

This commit is contained in:
ThatOneCalculator 2023-04-03 16:02:09 -07:00
parent aab919897b
commit 13bae2e165

View file

@ -336,7 +336,7 @@ function syncSlide(index) {
}
onMounted(() => {
syncSlide(timelines.indexOf(swiperRef.activeIndex));
syncSlide(timelines.indexOf(defaultStore.state.tl?.src || swiperRef.activeIndex));
});
</script>