fix: calculate date range for summary logs
This commit is contained in:
parent
4450e19f1f
commit
a48c1e312c
1 changed files with 2 additions and 2 deletions
|
|
@ -146,8 +146,8 @@ const DetailsRow = ({ it: tx, timezone }) => {
|
|||
''
|
||||
}
|
||||
|
||||
const from = sub({ minutes: MINUTES_OFFSET }, tx.created)
|
||||
const until = add({ minutes: MINUTES_OFFSET }, tx.created)
|
||||
const from = sub({ minutes: MINUTES_OFFSET }, new Date(tx.created))
|
||||
const until = add({ minutes: MINUTES_OFFSET }, new Date(tx.created))
|
||||
|
||||
const downloadRawLogs = ({ id: txId, deviceId, txClass }, timezone) => {
|
||||
fetchSummary({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue