提交 1d43c20d 编写于 作者: P Phil Hughes

Correctly removes from all lists when moving to done

上级 5b36687b
......@@ -105,7 +105,7 @@
listTo.addIssue(issue, listFrom);
}
if (listTo.id === 'done' && listFrom.id !== 'backlog') {
if (listTo.type === 'done' && listFrom.type !== 'backlog') {
issueLists.forEach((list) => {
list.removeIssue(issue);
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册