Skip to content

Commit b0b9f5d

Browse files
committed
Added missing bracket
1 parent 52e79f8 commit b0b9f5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Services/PredefinedFilterService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,15 +235,15 @@ public function selectList(Request $request, bool $visibilityInName = false): Le
235235
}
236236

237237
protected function applySearchFilter($query, Request $request): void
238-
238+
{
239239
if (!$request->filled('search')) {
240240
return;
241241
}
242242

243243
$search = trim($request->get('search', ''));
244244
$upper = strtoupper($search);
245245

246-
$private = strtoupper(trans('general.private')) . ':';
246+
$private = strtoupper(trans('general.private')) . ':';
247247
$public = strtoupper(trans('general.public')) . ':';
248248

249249
if (str_starts_with($upper, 'PRIVATE:') || str_starts_with($upper, $private)) {

0 commit comments

Comments
 (0)