Skip to content

Commit

Permalink
fix: Do not show position property for body
Browse files Browse the repository at this point in the history
  • Loading branch information
surajshetty3416 committed Jan 9, 2025
1 parent d933bde commit 03c4d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/BlockProperties.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,7 @@ const sections = [
{
name: "Position",
properties: positionSectionProperties,
condition: () => !blockController.multipleBlocksSelected(),
condition: () => !blockController.multipleBlocksSelected() && !blockController.isRoot(),
collapsed: computed(() => {
return (
!blockController.getStyle("top") &&
Expand Down

0 comments on commit 03c4d22

Please sign in to comment.