Progress object is nested (#3262)

//cc @Murderlon
This commit is contained in:
Artur Paikin 2021-10-14 20:26:58 +01:00 committed by GitHub
parent 7ec6d8814c
commit b632e9d8d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -192,7 +192,8 @@ function LoadingSpinner () {
}
function ProgressBarProcessing (props) {
const { value, mode, message } = props
const { progress } = props
const { value, mode, message } = progress
const roundedValue = Math.round(value * 100)
const dot = `\u00B7`