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-13 09:00:56 +01:00
parent 342d9beaf6
commit c876e87990
+1 -1
View File
@@ -217,7 +217,7 @@ export default {
})
},
dragHandleSelector() {
return this.canEdit ? null : '.no-drag'
return this.canEdit && !this.showArchived ? null : '.no-drag'
},
cardDetailsInModal: {
get() {