From a443c8df5cb1594922d0851cf9999465e8ccb7f1 Mon Sep 17 00:00:00 2001 From: Manh Hung Nguyen Date: Thu, 4 Jan 2024 15:48:47 +0700 Subject: [PATCH] Fix step navigation is not hide when isShowStepNavigation false Fixes: AFORM-3858 --- .../forms-react/src/components/FormStepNavigation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@episerver/forms-react/src/components/FormStepNavigation.tsx b/src/@episerver/forms-react/src/components/FormStepNavigation.tsx index 5265801..214706b 100644 --- a/src/@episerver/forms-react/src/components/FormStepNavigation.tsx +++ b/src/@episerver/forms-react/src/components/FormStepNavigation.tsx @@ -64,7 +64,7 @@ export const FormStepNavigation = (props: FormStepNavigationProps) => { return ( <> - {isShowStepNavigation && + {isShowStepNavigation && form.properties.showNavigationBar &&