How to use GitHub
- Please use the 👍 reaction to show that you are affected by the same issue.
- Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue.
- Subscribe to receive notifications on status change and new comments.
Describe the solution you'd like
Please add the active board to the move card dialog, to move the card in the active board. In my opinion in bigger boards it is easier to move a card this way.
This should be possible by editing src/components/cards/CardMenu.vue row 128-132
Current:
boards() {
return this.$store.getters.boards.filter(board => {
return board.id !== this.currentBoard.id
})
},
Solution:
boards() {
return this.$store.getters.boards.filter(board => {
return board.id
})
},
How to use GitHub
Describe the solution you'd like
Please add the active board to the move card dialog, to move the card in the active board. In my opinion in bigger boards it is easier to move a card this way.
This should be possible by editing src/components/cards/CardMenu.vue row 128-132
Current:
Solution: