Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deletemodal): update microcopy based content #91

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions src/components/modal/resource-modals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export const applicationDeleteModal = (applicationObj: ApplicationKind) =>
description: (
<>
The application{' '}
<strong>{applicationObj.spec.displayName || applicationObj.metadata.name}</strong> 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.
<strong>{applicationObj.spec.displayName || applicationObj.metadata.name}</strong>, its
components, and any related images in namespace{' '}
<strong>{applicationObj.metadata.namespace}</strong> will be permanently deleted.
</>
),
});
Expand All @@ -23,9 +23,8 @@ export const componentDeleteModal = (component: ComponentKind) =>
model: ComponentModel,
description: (
<>
The component <strong>{component.metadata.name}</strong> 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 <strong>{component.metadata.name}</strong> and all of its images in namespace{' '}
<strong>{component.metadata.namespace}</strong> will be permanently deleted.
</>
),
});
Loading