Skip to content

Commit 97d5fcb

Browse files
committed
fix: ensure full column span for headless section type in form builder
1 parent 4992316 commit 97d5fcb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/dist/custom-fields.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Filament/Integration/Factories/SectionComponentFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function create(CustomFieldSection $customFieldSection): Section|Fieldset
2323
->columnSpanFull()
2424
->label($customFieldSection->name)
2525
->columns(12),
26-
CustomFieldSectionType::HEADLESS => Grid::make(12),
26+
CustomFieldSectionType::HEADLESS => Grid::make(12)->columnSpanFull(),
2727
};
2828
}
2929
}

0 commit comments

Comments
 (0)