From 3e5be43900f562790eb70b5806fff7c9f8d7a631 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 16 May 2023 14:07:23 +0700 Subject: [PATCH] UBER-122: Fix invalid time report shown (#3191) Signed-off-by: Andrey Sobolev --- .../src/components/sprints/IssueStatistics.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/tracker-resources/src/components/sprints/IssueStatistics.svelte b/plugins/tracker-resources/src/components/sprints/IssueStatistics.svelte index 45749c61b6..c1395d95e4 100644 --- a/plugins/tracker-resources/src/components/sprints/IssueStatistics.svelte +++ b/plugins/tracker-resources/src/components/sprints/IssueStatistics.svelte @@ -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 )