Fix variables

This commit is contained in:
James Cole
2026-07-09 06:22:42 +02:00
parent 3b32c61ffe
commit 0524afaf93
77 changed files with 198 additions and 179 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ final class HomeController extends Controller
$label = $request->input('label');
$isCustomRange = false;
Log::debug('dateRange: Received dateRange', ['start' => $stringStart, 'end' => $stringEnd, 'label' => $request->get('label')]);
Log::debug('dateRange: Received dateRange', ['start' => $stringStart, 'end' => $stringEnd, 'label' => $request->input('label')]);
// check if the label is "everything" or "Custom range" which will betray
// a possible problem with the budgets.
if ($label === (string) trans('firefly.everything') || $label === (string) trans('firefly.customRange')) {