From 03c4d22d9d32c8dd030f6553604ffa7444883ffe Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Thu, 9 Jan 2025 13:35:27 +0530 Subject: [PATCH] fix: Do not show position property for body --- frontend/src/components/BlockProperties.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/BlockProperties.vue b/frontend/src/components/BlockProperties.vue index 2a900816..0973002a 100644 --- a/frontend/src/components/BlockProperties.vue +++ b/frontend/src/components/BlockProperties.vue @@ -1251,7 +1251,7 @@ const sections = [ { name: "Position", properties: positionSectionProperties, - condition: () => !blockController.multipleBlocksSelected(), + condition: () => !blockController.multipleBlocksSelected() && !blockController.isRoot(), collapsed: computed(() => { return ( !blockController.getStyle("top") &&