Skip to content

Commit 9a12b51

Browse files
authored
Adjust Separator for flexCol
1 parent c4bd81b commit 9a12b51

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Views/Columns/Traits/Configuration/ArrayColumnConfiguration.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,16 @@ public function flexCol(array $attribs = []): self
5454
$bag = new ComponentAttributeBag(['class' => $this->isTailwind() ? 'flex flex-col' : 'd-flex d-flex-col']);
5555

5656
return $this->wrapperStart('<div '.$bag->merge($attribs).'>')
57-
->wrapperEnd('</div>');
57+
->wrapperEnd('</div>')
58+
->separator("");
5859
}
5960

6061
public function flexRow(array $attribs = []): self
6162
{
6263
$bag = new ComponentAttributeBag(['class' => $this->isTailwind() ? 'flex flex-row' : 'd-flex d-flex-row']);
6364

6465
return $this->wrapperStart('<div '.$bag->merge($attribs).'>')
65-
->wrapperEnd('</div>');
66+
->wrapperEnd('</div>')
67+
->separator("");
6668
}
6769
}

0 commit comments

Comments
 (0)