From b1ff8f5f8992642a241359fcdef31341781c68ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vasilj=20Milo=C5=A1evi=C4=87?= Date: Wed, 3 Dec 2025 12:36:00 +0100 Subject: [PATCH] Change placeholder index to a string identifier Fixes Error: Invalid parameter layoutItem id passed --- src/components/Grid/GridLayout.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Grid/GridLayout.vue b/src/components/Grid/GridLayout.vue index 912ee5d..e25b337 100644 --- a/src/components/Grid/GridLayout.vue +++ b/src/components/Grid/GridLayout.vue @@ -143,7 +143,7 @@ const isDragging = ref(false); const placeholder = ref({ h: 0, - i: -1, + i: '__grid_placeholder__', w: 0, x: 0, y: 0,