Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions .features/pending/14679-cronworkflow-delete-warning.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Component: UI
Issues: 14679
Description: Add an informational message to the CronWorkflow delete confirmation modal indicating that Workflows created by the CronSchedule will also be deleted.
Author: [minsun yun](https://github.com/miinsun)

- UI/UX only; **no functional logic** is changed.
- Verified manually by deleting a CronWorkflow in the Workflows UI and confirming the message renders correctly.
2 changes: 1 addition & 1 deletion ui/src/cron-workflows/cron-workflow-details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export function CronWorkflowDetails({match, location, history}: RouteComponentPr
iconClassName: 'fa fa-trash',
disabled: edited,
action: () => {
popup.confirm('confirm', 'Are you sure you want to delete this cron workflow?').then(yes => {
popup.confirm('confirm', 'Are you sure you want to delete this cron workflow? (This also deletes all Workflows it spawned)').then(yes => {
if (yes) {
services.cronWorkflows
.delete(name, namespace)
Expand Down
Loading