fix bug preventing kanban board movement

This commit is contained in:
daria 2024-12-10 14:45:34 +02:00
parent d6db1948e8
commit 6c4fa5fbef

View File

@ -254,7 +254,7 @@ define([
accepts: function (el, target, source, sibling) {
if (self.options.readOnly) { return false; }
if (sibling && sibling.getAttribute('id') === "kanban-addboard") { return false; }
return target.classList.contains('kanban-container') ||
return target.classList.contains('kanban-boards-container') ||
target.classList.contains('kanban-trash');
},
revertOnSpill: true,