From 854ab8c435a575d4ecbde64e8a4f781ef64ff7db Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Thu, 31 Jul 2025 17:16:00 +0200 Subject: [PATCH] frontend: update navigation config to conditionally show cancel and back buttons based on edit mode --- .../src/lib/services/wizard-state.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts b/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts index 7161915..aca1a9b 100644 --- a/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts +++ b/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts @@ -360,8 +360,8 @@ export class RoomWizardStateService { return { showPrevious: !isFirstStep, showNext: !isLastStep, - showCancel: false, - showBack: true, + showCancel: isEditMode, + showBack: !isEditMode, showFinish: isLastStep, showSkipAndFinish: false, // Skip and finish is not used in this wizard disableFinish: isSomeStepInvalid,