Skip to content

Commit b83f89d

Browse files
Merge pull request #56 from Relaticle/fix/section-type-rendering
fix: ensure full column span for headless section type in form builder
2 parents 9a17a43 + 20d8fe3 commit b83f89d

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)