fix: remove deep flag from elements and store-elements watcher
* deep watching causes a reset after positions change * fallback to non-worker parsing Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
@@ -163,8 +163,8 @@ invoke(async () => {
|
||||
)
|
||||
})
|
||||
|
||||
throttledWatch(elements, store.setElements, { flush: 'post', deep: true, throttle: 10 })
|
||||
throttledWatch(store.elements, (val) => (elements.value = val), { flush: 'post', deep: true, throttle: 10 })
|
||||
throttledWatch(elements, store.setElements, { flush: 'post', throttle: 10 })
|
||||
throttledWatch(store.elements, (val) => (elements.value = val), { flush: 'post', throttle: 10 })
|
||||
|
||||
const transitionName = computed(() => {
|
||||
let name = ''
|
||||
|
||||
Reference in New Issue
Block a user