Fix Vector Drag (#11057)

(cherry picked from commit 8908a73f6a)
This commit is contained in:
Adam Obuchowicz 2024-09-12 12:20:49 +02:00 committed by James Dunkerley
parent 55690c7fb4
commit 478789e0ef

View File

@ -3,7 +3,7 @@ import type { Opt } from '@/util/data/opt'
import { reactive, watch, type WatchSource } from 'vue'
export { provideFn as provideAppClassSet }
const { provideFn, injectFn: injectAppClassSet } = createContextStore('Port info', () => {
const { provideFn, injectFn: injectAppClassSet } = createContextStore('App Class Set', () => {
return reactive(new Map<string, number>())
})