From f13ddeb9b1d073ac4b25048ad1b544ff49571320 Mon Sep 17 00:00:00 2001 From: ibolton336 Date: Wed, 29 Nov 2023 14:34:27 -0500 Subject: [PATCH] :bug: Fix edit review message for apps Signed-off-by: ibolton336 --- client/public/locales/en/translation.json | 1 + .../applications/applications-table/applications-table.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/client/public/locales/en/translation.json b/client/public/locales/en/translation.json index cfa6b25d21..9743456fd0 100644 --- a/client/public/locales/en/translation.json +++ b/client/public/locales/en/translation.json @@ -192,6 +192,7 @@ "overrideAssessmentConfirmation": "Do you want to create a dedicated assessment for this application and override the inherited archetype assessment(s)?", "overrideArchetypeReviewDescription": "The application {{name}} already is associated with archetypes: {{what}}.", "overrideArchetypeReviewConfirmation": "Do you want to create a dedicated review for this application and override the inherited archetype review?", + "editApplicationReviewConfirmation": "This application has already been reviewed. Do you want to continue?", "editArchetypeReviewConfirmation": "This archetype has already been reviewed. Do you want to continue?", "reasonForError": "The reported reason for the error:", "reviewInstructions": "Use this section to provide your assessment of the possible migration/modernization plan and effort estimation.", diff --git a/client/src/app/pages/applications/applications-table/applications-table.tsx b/client/src/app/pages/applications/applications-table/applications-table.tsx index 7afc874fbd..94dd73eafa 100644 --- a/client/src/app/pages/applications/applications-table/applications-table.tsx +++ b/client/src/app/pages/applications/applications-table/applications-table.tsx @@ -1240,7 +1240,7 @@ export const ApplicationsTable: React.FC = () => { })} titleIconVariant={"warning"} isOpen={reviewToEdit !== null} - message={t("message.overrideReviewConfirmation")} + message={t("message.editApplicationReviewConfirmation")} confirmBtnVariant={ButtonVariant.primary} confirmBtnLabel={t("actions.continue")} cancelBtnLabel={t("actions.cancel")}