-Fix timestamp calculation problem for the UI
This commit is contained in:
parent
1c8a9a88ae
commit
76cfe7714b
3 changed files with 2 additions and 6 deletions
|
@ -375,5 +375,5 @@ function convertDateToPosixTime(s){
|
|||
} else
|
||||
sec = time[2];
|
||||
|
||||
return Date.UTC(year, month, day, hour, minute, sec, msec);
|
||||
return Date.UTC(year, month-1, day, hour, minute, sec, msec);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue