fix: timezone offset
This commit is contained in:
parent
b3a14aa539
commit
83648b9a31
1 changed files with 2 additions and 2 deletions
|
|
@ -85,7 +85,7 @@ const SystemPerformance = () => {
|
|||
t.error === null &&
|
||||
moment
|
||||
.utc(t.created)
|
||||
.utcOffset(timezone.dstOffset)
|
||||
.utcOffset(timezone)
|
||||
.isBetween(ranges[selectedRange].right, moment())
|
||||
)
|
||||
}
|
||||
|
|
@ -93,7 +93,7 @@ const SystemPerformance = () => {
|
|||
t.error === null &&
|
||||
moment
|
||||
.utc(t.created)
|
||||
.utcOffset(timezone.dstOffset)
|
||||
.utcOffset(timezone)
|
||||
.isBetween(ranges[selectedRange].left, ranges[selectedRange].right)
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue