Skip to content

Commit eb44a17

Browse files
committed
ProgressBar more details
1 parent c78d994 commit eb44a17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/mid-panel/ProgressBar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class ProgressBar extends React.Component {
176176
// if the user enters a valid input and clicks on LOAD
177177
// the progress bar displays the percentage of progress
178178
// convert the lines of code to percentge by multiplying the division by 100
179-
`Progress: ${Math.round((current / max) * 100, 2)} %`
179+
`Progress: ${"" + current + "/" + max + "=" + Math.round((current / max) * 100, 2)}%`
180180
// if the user does not enter a valid input, initialise the progress bar as not loaded
181181
}
182182
</div>

0 commit comments

Comments
 (0)