From 6abf5fd410b15d864e40ca0c10628478c0f6b689 Mon Sep 17 00:00:00 2001 From: Sampo Tawast <5328394+sirtawast@users.noreply.github.com> Date: Tue, 26 Nov 2024 12:42:22 +0200 Subject: [PATCH] fix: make sidebar opening/closing possible even if application is cancelled (#3594) --- .../src/components/applicationReview/ApplicationReview.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/benefit/handler/src/components/applicationReview/ApplicationReview.tsx b/frontend/benefit/handler/src/components/applicationReview/ApplicationReview.tsx index 15863fe4d3..1d465c23bd 100644 --- a/frontend/benefit/handler/src/components/applicationReview/ApplicationReview.tsx +++ b/frontend/benefit/handler/src/components/applicationReview/ApplicationReview.tsx @@ -79,6 +79,7 @@ const ApplicationReview: React.FC = () => { const showNewAhjoActions = isNewAhjoMode && (application.status === APPLICATION_STATUSES.HANDLING || + application.status === APPLICATION_STATUSES.CANCELLED || application.status === APPLICATION_STATUSES.ACCEPTED || application.status === APPLICATION_STATUSES.REJECTED || application.status === APPLICATION_STATUSES.INFO_REQUIRED);