We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 442d01b commit facc616Copy full SHA for facc616
library/Notifications/Widget/TimeGrid/BaseGrid.php
@@ -427,7 +427,8 @@ final protected function yieldFixedEntries(Traversable $entries): Generator
427
}
428
429
if ($entry instanceof FutureEntry) {
430
- $colStart = ($this->getNoOfVisuallyConnectedHours() / 24 + 1) * - 1;
+ // (no. of days * - 2) - 1, example: 7 days (week) = -15
431
+ $colStart = (($this->getNoOfVisuallyConnectedHours() / 24) * - 2) - 1;
432
$colEnd = $gridBorderAt;
433
} else {
434
$actualStart = Util::roundToNearestThirtyMinute($entry->getStart());
0 commit comments