Skip to content

Commit

Permalink
fix alignment issue with actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gladjanus43 committed Oct 29, 2024
1 parent 434f839 commit 0b15da9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/components/table-repeater.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<tr
wire:key="{{ $this->getId() }}.{{ $row->getStatePath() }}.{{ $field::class }}.item"
x-sortable-item="{{ $uuid }}"
class="table-repeater-row "
@class(['table-repeater-row'])
>
@php($counter = 0)
@foreach ($row->getComponents() as $cell)
Expand All @@ -144,7 +144,7 @@ class="table-repeater-row "
@class([
'table-repeater-column',
'p-2' => !$streamlined && !$isMinimal,
'pr-3 pt-5' => $isMinimal,
'pr-3 py-3' => $isMinimal,
'has-hidden-label' => $cell->isLabelHidden(),
match ($headers[$counter++]->getAlignment()) {
'center', Alignment::Center => 'text-center',
Expand Down

0 comments on commit 0b15da9

Please sign in to comment.