Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-to authored and github-actions[bot] committed Dec 23, 2024
1 parent b45ec34 commit c72b49c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/UI/src/Components/Table/TableBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,10 @@ private function resolveHeadRow(): TableRowContract
)
->when(
$field->isSortActive(),
static fn (Link $link): Link =>$link->icon(
static fn (Link $link): Link => $link->icon(
$field->sortDirectionIs('desc') ? 'bars-arrow-down' : 'bars-arrow-up',
),
static fn (Link $link): Link =>$link->icon('arrows-up-down'),
static fn (Link $link): Link => $link->icon('arrows-up-down'),
)
->customAttributes([
'class' => $field->isSortActive() ? 'text-primary' : '',
Expand Down

0 comments on commit c72b49c

Please sign in to comment.