File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -287,11 +287,11 @@ namespace Uno.WebAssembly.Bootstrap {
287
287
// setting the max progress to 100 instead.
288
288
if ( _previousTotalResources != totalResources )
289
289
{
290
- _currentTargetProgress = ( 100 - _currentTargetProgress ) / 2 ;
291
- _previousTotalResources = totalResources ;
290
+ this . _currentTargetProgress = this . _currentTargetProgress + ( 100 - this . _currentTargetProgress ) / 2 ;
291
+ this . _previousTotalResources = totalResources ;
292
292
}
293
293
294
- ( < any > this . progress ) . value = Math . min ( resourcesLoaded , _currentTargetProgress ) ;
294
+ ( < any > this . progress ) . value = Math . min ( resourcesLoaded , this . _currentTargetProgress ) ;
295
295
}
296
296
297
297
private initProgress ( ) {
You can’t perform that action at this time.
0 commit comments