Skip to content

Commit

Permalink
Merge pull request #34 from KonnectIT/search_direction
Browse files Browse the repository at this point in the history
Search direction icon update
  • Loading branch information
luanfreitasdev authored Jul 31, 2021
2 parents 5b112a1 + 2bc178c commit be6424d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/bootstrap/50/table.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class="table table-bordered table-hover table-striped table-checkable table-high
<span class="text-base">
@if ($sortField !== $column->field)
{!! $sortIcon !!}
@elseif ($sortDirection)
@elseif ($sortDirection == 'desc')
{!! $sortAscIcon !!}
@else
{!! $sortDescIcon !!}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/tailwind/2/table.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class="px-2 pr-4 py-3 text-left text-xs font-medium text-gray-500 uppercase trac
<span class="text-base pr-2">
@if ($sortField !== $column->field)
{!! $sortIcon !!}
@elseif ($sortDirection)
@elseif ($sortDirection == 'desc')
{!! $sortAscIcon !!}
@else
{!! $sortDescIcon !!}
Expand Down

0 comments on commit be6424d

Please sign in to comment.