mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 20:59:30 +00:00
Fix bug where tests on the current day weren't selected in recent or upcoming filters
This commit is contained in:
@@ -140,7 +140,7 @@ class User {
|
||||
|
||||
switch (range) {
|
||||
case 'before':
|
||||
sql += `and t.testDate < curdate()`;
|
||||
sql += `and t.testDate <= curdate()`;
|
||||
break;
|
||||
case 'after':
|
||||
sql += `and t.testDate > curdate()`;
|
||||
|
||||
Reference in New Issue
Block a user