Skip to content

Commit

Permalink
chore: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
glennjacobs authored and github-actions[bot] committed Jan 8, 2024
1 parent 724ac26 commit 9de517f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/admin/src/Support/Pages/BaseListRecords.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ protected function applySearchToTableQuery(Builder $query): Builder
);

$query->whereIn(
'id',
$ids
)
->orderByRaw("FIELD(id, ".$ids->implode(',') .")"); // TODO: Only supports MySQL
'id',
$ids
)
->orderByRaw('FIELD(id, '.$ids->implode(',').')'); // TODO: Only supports MySQL
}

return $query;
Expand Down

0 comments on commit 9de517f

Please sign in to comment.