()
| 13 | const { title, projectName, open, onDeleteConfirm, onDeleteCancel, describe, buttonType = 'delete-button' } = props |
| 14 | const parts = describe.split(new RegExp(`(${projectName})`, 'i')) |
| 15 | const handleOk = async () => { |
| 16 | await setDeleteLoading(true) |
| 17 | await onDeleteConfirm() |
| 18 | await setDeleteLoading(false) |
| 19 | }; |
| 20 | |
| 21 | const handleCancel = () => { |
| 22 | onDeleteCancel() |
no test coverage detected