diff --git a/js/layout-paragraphs-widget.js b/js/layout-paragraphs-widget.js index a0f3fa3f4d830a3cc874b7f939cd176ef8264c0d..5670bfca015f504e6bbc64fa6af135831e5f296a 100644 --- a/js/layout-paragraphs-widget.js +++ b/js/layout-paragraphs-widget.js @@ -540,7 +540,8 @@ // based on what the next item is and which direction we are moving. const methods = $next.is(".layout-paragraphs-layout-region") || - $next.is(".active-items") + $next.is(".active-items") || + $next.is(".layout-paragraphs-disabled-items__items") ? ["append", "prepend"] : ["before", "after"]; const method = dir === "up" ? methods[0] : methods[1];