Skip to content

Commit

Permalink
fix(ui): use background delete to match k8s terminology (argoproj#15579)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Soref <jsoref@gmail.com>
Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
  • Loading branch information
2 people authored and tesla59 committed Dec 16, 2023
1 parent 4995a88 commit acb336b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/applications/components/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export const deletePopup = async (ctx: ContextApis, resource: ResourceTreeNode,
</label>
<input type='radio' name='deleteOptions' value='force' onChange={() => handleStateChange('force')} style={{marginRight: '5px'}} id='force-delete-radio' />
<label htmlFor='force-delete-radio' style={{paddingRight: '30px'}}>
Force Delete {helpTip('Deletes the resource and its dependent resources in the background')}
Background Delete {helpTip('Performs a forceful "background cascading deletion" of the resource and its dependent resources')}
</label>
<input type='radio' name='deleteOptions' value='orphan' onChange={() => handleStateChange('orphan')} style={{marginRight: '5px'}} id='cascade-delete-radio' />
<label htmlFor='cascade-delete-radio'>Non-cascading (Orphan) Delete {helpTip('Deletes the resource and orphans the dependent resources')}</label>
Expand Down

0 comments on commit acb336b

Please sign in to comment.