UBER-122: Fix invalid time report shown (#3191)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2023-05-16 14:07:23 +07:00 committed by GitHub
parent 190b1078b5
commit 3e5be43900
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@
.reduce((it, cur) => {
return it + cur
}, 0),
1
3
)
$: totalReported = floorFractionDigits(
(noParents ?? [{ reportedTime: 0, childInfo: [] } as unknown as Issue])
@ -78,7 +78,7 @@
.reduce((it, cur) => {
return it + cur
}, 0),
1
3
)
</script>