mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 13:44:27 +08:00
fixed last month filter not working
This commit is contained in:
parent
9f48c5ebae
commit
09a09b043d
1 changed files with 1 additions and 1 deletions
|
@ -1159,7 +1159,7 @@ function refreshAccountPage() {
|
|||
config.resultFilters.date.all ||
|
||||
(config.resultFilters.date.last_day && timeSinceTest <= 86400) ||
|
||||
(config.resultFilters.date.last_week && timeSinceTest <= 604800) ||
|
||||
(config.resultFilters.date.last_month && timeSinceTest <= 18144000)
|
||||
(config.resultFilters.date.last_month && timeSinceTest <= 2592000)
|
||||
) {
|
||||
datehide = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue