1
0
Fork 0
mirror of synced 2024-09-10 14:35:47 +12:00

Add missing component store to client library SDK

This commit is contained in:
Andrew Kingston 2022-05-05 08:57:36 +01:00
parent b8b1bb31c6
commit d8c7fadd46
2 changed files with 3 additions and 1 deletions

View file

@ -22,7 +22,7 @@
if (
formContext &&
$builderStore.inBuilder &&
$componentStore?.selectedComponentPath?.includes($component.id)
$componentStore.selectedComponentPath?.includes($component.id)
) {
formContext.formApi.setStep(step)
}

View file

@ -7,6 +7,7 @@ import {
builderStore,
uploadStore,
rowSelectionStore,
componentStore,
} from "stores"
import { styleable } from "utils/styleable"
import { linkable } from "utils/linkable"
@ -24,6 +25,7 @@ export default {
screenStore,
builderStore,
uploadStore,
componentStore,
styleable,
linkable,
getAction,