Skip to content

Commit

Permalink
fix: Disable dragging archived cards (fix #3271)
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed Nov 12, 2023
1 parent 00499b2 commit ddacb96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/board/Stack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export default {
})
},
dragHandleSelector() {
return this.canEdit ? null : '.no-drag'
return this.canEdit && !this.showArchived ? null : '.no-drag'
},
cardDetailsInModal: {
get() {
Expand Down

0 comments on commit ddacb96

Please sign in to comment.