We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c78d994 commit eb44a17Copy full SHA for eb44a17
src/components/mid-panel/ProgressBar.js
@@ -176,7 +176,7 @@ class ProgressBar extends React.Component {
176
// if the user enters a valid input and clicks on LOAD
177
// the progress bar displays the percentage of progress
178
// convert the lines of code to percentge by multiplying the division by 100
179
- `Progress: ${Math.round((current / max) * 100, 2)} %`
+ `Progress: ${"" + current + "/" + max + "=" + Math.round((current / max) * 100, 2)}%`
180
// if the user does not enter a valid input, initialise the progress bar as not loaded
181
}
182
</div>
0 commit comments