Fix card move between lanes

This commit is contained in:
wpetit 2019-12-06 10:02:30 +01:00
parent 29f44f8c75
commit bdd5ce7ebe
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ export function* moveCardSaga(action) {
if (!card) return;
yield put(addLabel(card.project, card.number, board.lanes[toLaneID].issueLabel));
yield put(removeLabel(card.project, card.number, board.lanes[fromLaneID].issueLabel));
yield put(addLabel(card.project, card.issue.number, board.lanes[toLaneID].issueLabel));
yield put(removeLabel(card.project, card.issue.number, board.lanes[fromLaneID].issueLabel));
}