Skip to content

Commit fe16be0

Browse files
UI: fix bulk delete project with cleanup (#6708)
1 parent b831f23 commit fe16be0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/config/section/project.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export default {
158158
},
159159
groupAction: true,
160160
popup: true,
161-
groupMap: (selection) => { return selection.map(x => { return { id: x } }) },
161+
groupMap: (selection, values) => { return selection.map(x => { return { id: x, cleanup: values.cleanup || null } }) },
162162
args: (record, store) => {
163163
const fields = []
164164
if (store.apis.deleteProject.params.filter(x => x.name === 'cleanup').length > 0) {

0 commit comments

Comments
 (0)