Commit 1d43c20d authored by Phil Hughes's avatar Phil Hughes

Correctly removes from all lists when moving to done

parent 5b36687b
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
listTo.addIssue(issue, listFrom); listTo.addIssue(issue, listFrom);
} }
if (listTo.id === 'done' && listFrom.id !== 'backlog') { if (listTo.type === 'done' && listFrom.type !== 'backlog') {
issueLists.forEach((list) => { issueLists.forEach((list) => {
list.removeIssue(issue); list.removeIssue(issue);
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment