Skip to content

Commit 842e3ec

Browse files
committed
Update Spinner.jsx
1 parent 34ff630 commit 842e3ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Spinner.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default function Spinner({ delay, noPadding = false, ...otherProps }) {
109109
<CircularProgress {...otherProps} value={elapsed} sx={{ "svg circle": { stroke: "url(#my_gradient)" } }} />
110110
{acquisitionType === "range" && variant !== "indeterminate" && (
111111
<Typography variant="caption" component="div" color="inherit" fontFamily="inherit" fontSize={20} fontWeight={650} sx={{ textAlign: "center" }}>
112-
{Math.round(elapsed)}%<br />Steps Complete: {stepsDone} / {totalSteps}
112+
{Math.round(elapsed)}%<br />Steps Complete: {stepsDone} / {Math.ceil(totalSteps)}
113113
</Typography>
114114
)}
115115
<svg>

0 commit comments

Comments
 (0)