Add cross-board card transfer - #1194
Open
dukaci wants to merge 1 commit into
Open
Conversation
Add two opt-in features for moving cards between kanban boards: Board Switcher Panel - Side panel showing all kanban boards as tiles - Drag a card over a tile to switch boards, then click a lane to place it - Card stays on source board until placement is confirmed - Escape or right-click cancels and returns to the source board - Double-click tiles to rename them Send to Board Context Menu - Right-click a card → "Send to board" → pick board → pick column - Instantly moves the card to the chosen column on the target board Both features are off by default and controlled via new toggles under "Cross-board features" in the Kanban settings.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey! I've been wanting a way to move cards between boards for a while so I took a crack at it. Two new features, both off by default behind settings toggles so nothing changes for existing users.
Board switcher sidebar - little panel on the left with tiles for each kanban board. You can drag a card onto a tile to switch boards, then click whichever lane you want to drop it in. Right-click or Escape to cancel. Double-click a tile to rename it.
"Send to board" in context menu - right-click a card, pick a board, pick a column, done. Quick way to move stuff without dragging.
Both are under Settings → Kanban → Cross-board features.
Tried to keep the changes minimal and self-contained. The card stays on the source board until you actually confirm placement so nothing gets lost if you change your mind.
Happy to adjust anything if needed!