From d621241c3f78ccb7071950baf3042b77e85ad2d1 Mon Sep 17 00:00:00 2001 From: Abhi Date: Mon, 20 Jan 2025 18:34:19 +0530 Subject: [PATCH] fix(deletemodal): update microcopy based content --- src/components/modal/resource-modals.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/components/modal/resource-modals.tsx b/src/components/modal/resource-modals.tsx index 554077bf..c6e7add4 100644 --- a/src/components/modal/resource-modals.tsx +++ b/src/components/modal/resource-modals.tsx @@ -10,9 +10,9 @@ export const applicationDeleteModal = (applicationObj: ApplicationKind) => description: ( <> The application{' '} - {applicationObj.spec.displayName || applicationObj.metadata.name} will be - deleted permanently with all of its components. The deleted application will be promoted - manually or automatically based on the deployment strategy of each environment. + {applicationObj.spec.displayName || applicationObj.metadata.name}, its + components, and any related images in namespace{' '} + {applicationObj.metadata.namespace} will be permanently deleted. ), }); @@ -23,9 +23,8 @@ export const componentDeleteModal = (component: ComponentKind) => model: ComponentModel, description: ( <> - The component {component.metadata.name} will be deleted from the components - view. The updated application will be promoted manually or automatically based on the - deployment strategy of each environment. + The component {component.metadata.name} and all of its images in namespace{' '} + {component.metadata.namespace} will be permanently deleted. ), });