From 69a50fef3cd13ccd70770f269a42db6556dbb57b Mon Sep 17 00:00:00 2001 From: wangyidong Date: Mon, 29 Jan 2024 13:23:16 +0800 Subject: [PATCH] * Fix bug #45435. --- module/release/js/view.ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/release/js/view.ui.js b/module/release/js/view.ui.js index 4a4c57d6bc..23d834cf6a 100644 --- a/module/release/js/view.ui.js +++ b/module/release/js/view.ui.js @@ -57,7 +57,7 @@ window.setStoryStatistics = function(element, checkedIDList) { const story = row.data; const cases = storyCases[row.id]; - checkedEstimate += story.estimate; + checkedEstimate += parseFloat(story.estimate); if(cases > 0) {