From e388d6865fb5377b8560f1d4c51930f5266e8f56 Mon Sep 17 00:00:00 2001 From: mosuzi Date: Fri, 16 Jun 2023 16:40:37 +0800 Subject: [PATCH] fix:resizing item causes its placeholder flicker --- src/components/GridLayout.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/GridLayout.vue b/src/components/GridLayout.vue index 809f67cf..4a984d5f 100644 --- a/src/components/GridLayout.vue +++ b/src/components/GridLayout.vue @@ -426,7 +426,7 @@ //this.$broadcast("updateWidth", this.width); this.eventBus.$emit("updateWidth", this.width); - } else { + } else if (eventName) { this.$nextTick(function() { this.isDragging = false; });