fix: Disable dragging archived cards (fix #3271)

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2023-11-12 00:24:58 +01:00
parent b3b7d3907d
commit d10e5582d7

View File

@@ -216,7 +216,7 @@ export default {
})
},
dragHandleSelector() {
return this.canEdit ? null : '.no-drag'
return this.canEdit && !this.showArchived ? null : '.no-drag'
},
cardDetailsInModal: {
get() {