Skip to content
Snippets Groups Projects
Commit 258ee153 authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix bulk unarchive/delete, and fix flow

parent 19fa3a04
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@ const Collections = createEntity({
),
// NOTE: DELETE not currently implemented
// $FlowFixMe: no official way to disable builtin actions yet
delete: null,
},
......
......@@ -21,6 +21,7 @@ const Metrics = createEntity({
),
// NOTE: DELETE not currently implemented
// $FlowFixMe: no official way to disable builtin actions yet
delete: null,
},
......
......@@ -23,6 +23,7 @@ const Segments = createEntity({
),
// NOTE: DELETE not currently implemented
// $FlowFixMe: no official way to disable builtin actions yet
delete: null,
},
......
......@@ -112,7 +112,9 @@ const BulkActionControls = ({ selected, reload }) => (
medium
onClick={async () => {
try {
await Promise.all(selected.map(item => item.setArchived(false)));
await Promise.all(
selected.map(item => item.setArchived && item.setArchived(false)),
);
} finally {
reload();
}
......@@ -123,7 +125,7 @@ const BulkActionControls = ({ selected, reload }) => (
medium
onClick={async () => {
try {
await Promise.all(selected.map(item => item.delete(false)));
await Promise.all(selected.map(item => item.delete && item.delete()));
} finally {
reload();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment