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 342d9beaf6
commit c876e87990

View File

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