We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddd0597 commit 66fd151Copy full SHA for 66fd151
src/Sortable.js
@@ -1556,7 +1556,9 @@ Sortable.prototype = /** @lends Sortable.prototype */ {
1556
Sortable.active = null;
1557
1558
savedInputChecked.forEach(function (el) {
1559
- el.checked = true;
+ if (this.el.contains(el)) {
1560
+ el.checked = true;
1561
+ }
1562
});
1563
1564
savedInputChecked.length =
0 commit comments