1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Fix for form issue #5669 - when in an empty state didn't correctly handle null stores.

This commit is contained in:
mike12345567 2022-05-03 15:29:17 +01:00
parent 4b25df60f9
commit 8b76693480

View file

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