1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Fix endless loop when nesting 2 form steps inside each other

This commit is contained in:
Andrew Kingston 2021-08-20 15:20:19 +01:00
parent 8cb9870cf7
commit c78f88b900

View file

@ -19,8 +19,7 @@
if (
formContext &&
$builderStore.inBuilder &&
$builderStore.selectedComponentPath?.includes($component.id) &&
$formState?.currentStep !== step
$builderStore.selectedComponentPath?.includes($component.id)
) {
formContext.formApi.setStep(step)
}