Skip to content

Commit

Permalink
Bugfix in CalendarController wrt new customizeView method
Browse files Browse the repository at this point in the history
  • Loading branch information
Willem Vervuurt committed Nov 24, 2023
1 parent 703fdf8 commit 82b8f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/CalendarController.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function getCalendarData(string $view = 'month')

$view = View::get($view);
$view->initFromRequest($this->request);
$view = $dataProvider->customizeView($this);
$view = $dataProvider->customizeView($view);
return $view->calendarData($this->request, $dataProvider);
}

Expand Down

0 comments on commit 82b8f0a

Please sign in to comment.