change TimeEntryFilter start filter to be inclusive

This commit is contained in:
Gregor Vostrak
2026-05-12 16:55:01 +02:00
parent df34014bfe
commit 7ce3fa2740
2 changed files with 46 additions and 1 deletions

View File

@@ -62,7 +62,7 @@ class TimeEntryFilter
if ($start === null) {
return $this;
}
$this->builder->where('start', '>', $start);
$this->builder->where('start', '>=', $start);
return $this;
}