Fix for form issue #5669 - when in an empty state didn't correctly handle null stores.
This commit is contained in:
parent
9e46413202
commit
cfd53b2f93
|
@ -22,7 +22,7 @@
|
||||||
if (
|
if (
|
||||||
formContext &&
|
formContext &&
|
||||||
$builderStore.inBuilder &&
|
$builderStore.inBuilder &&
|
||||||
$componentStore.selectedComponentPath?.includes($component.id)
|
$componentStore?.selectedComponentPath?.includes($component.id)
|
||||||
) {
|
) {
|
||||||
formContext.formApi.setStep(step)
|
formContext.formApi.setStep(step)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue