We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4bd81b commit 9a12b51Copy full SHA for 9a12b51
src/Views/Columns/Traits/Configuration/ArrayColumnConfiguration.php
@@ -54,14 +54,16 @@ public function flexCol(array $attribs = []): self
54
$bag = new ComponentAttributeBag(['class' => $this->isTailwind() ? 'flex flex-col' : 'd-flex d-flex-col']);
55
56
return $this->wrapperStart('<div '.$bag->merge($attribs).'>')
57
- ->wrapperEnd('</div>');
+ ->wrapperEnd('</div>')
58
+ ->separator("");
59
}
60
61
public function flexRow(array $attribs = []): self
62
{
63
$bag = new ComponentAttributeBag(['class' => $this->isTailwind() ? 'flex flex-row' : 'd-flex d-flex-row']);
64
65
66
67
68
69
0 commit comments