|
|
@@ -468,7 +468,7 @@ const openLoadingDialog = (timer: number) => {
|
|
|
const step = 100 / timer
|
|
|
INTERVAL.value = setInterval(() => {
|
|
|
if (progress.value < 100) {
|
|
|
- progress.value == Math.min(Math.round(progress.value + step),100)
|
|
|
+ progress.value = Math.min(Math.round(progress.value + step),100)
|
|
|
}
|
|
|
}, 1000)
|
|
|
}
|