From cf5e5cf62b1b06e14f94566a607b5fe03e9f2308 Mon Sep 17 00:00:00 2001 From: Justin Toupin <justin@atendesigngroup.com> Date: Wed, 23 Sep 2020 11:57:47 -0600 Subject: [PATCH] fixed: one small issue with how items move into the diabled bin --- js/layout-paragraphs-widget.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/layout-paragraphs-widget.js b/js/layout-paragraphs-widget.js index a0f3fa3f..5670bfca 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]; -- GitLab