Skip to content

Commit

Permalink
fix style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MuchQuak committed Dec 18, 2024
1 parent 399b6de commit 486eac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
'basisOfRecord',
];

if(in_array($request->query('field_name'), $sortables) && $request->query('current_value') && $request->query('new_value')) {
if (in_array($request->query('field_name'), $sortables) && $request->query('current_value') && $request->query('new_value')) {
DB::table('omoccurrences')
->where('collid', '=', $request->query('collid'))
->where($request->query('field_name'), '=', $request->query('current_value'))
Expand Down

0 comments on commit 486eac4

Please sign in to comment.