Skip to content

Commit a1465f0

Browse files
committed
Fix php stan
1 parent 5380e23 commit a1465f0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Tables/Columns/Progress.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ public function getProgressData(array $state): array
3636
$progressColor = '#e74c3c';
3737
}
3838

39-
$displayProgress = $progress === 100 ? number_format($progress, 0) : number_format($progress, 2);
40-
$displayProgress = (int) round($displayProgress);
39+
$displayProgress = number_format($progress);
4140

4241
return [
4342
'progress' => $progress,

0 commit comments

Comments
 (0)