From 2a0fcebcc95ec4e257d37474029cc595b27b8a54 Mon Sep 17 00:00:00 2001 From: Trang Doan Date: Wed, 16 Apr 2025 18:21:01 -0400 Subject: [PATCH] fix bug --- src/features/attributeSelect.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/features/attributeSelect.tsx b/src/features/attributeSelect.tsx index 09bcb4d..ce3b319 100644 --- a/src/features/attributeSelect.tsx +++ b/src/features/attributeSelect.tsx @@ -339,7 +339,10 @@ const AttributeConfigPanel = ({ const uid = await createBlock({ node: { text: value, - children: [{ text: "options", children: [{ text: "" }] }], + children: [ + { text: "options", children: [{ text: "" }] }, + { text: "range", children: [] }, + ], }, order: "last", parentUid: attributesUid,