From 7b5217d0095452861cba7694faeea38646bd8bc1 Mon Sep 17 00:00:00 2001 From: sercan Date: Mon, 6 Sep 2021 23:56:39 +0300 Subject: [PATCH] (@fuse/loading-bar) Fixed: Don't turn off the auto mode on docs examples --- .../components/loading-bar/loading-bar.component.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/app/modules/admin/ui/fuse-components/components/loading-bar/loading-bar.component.ts b/src/app/modules/admin/ui/fuse-components/components/loading-bar/loading-bar.component.ts index b52d5258..85974446 100644 --- a/src/app/modules/admin/ui/fuse-components/components/loading-bar/loading-bar.component.ts +++ b/src/app/modules/admin/ui/fuse-components/components/loading-bar/loading-bar.component.ts @@ -89,9 +89,6 @@ export class LoadingBarComponent // Show the loading bar this._fuseLoadingBarService.show(); - // Turn off the auto mode - this._fuseLoadingBarService.setAutoMode(false); - // Set the mode this.mode = this.mode === 'indeterminate' ? 'determinate' : 'indeterminate'; this._fuseLoadingBarService.setMode(this.mode);