Skip to content

Commit

Permalink
fix(module:spin): respect delay on init
Browse files Browse the repository at this point in the history
  • Loading branch information
Airblader committed Oct 15, 2020
1 parent aafdd26 commit 36f92c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/spin/spin.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class NzSpinComponent implements OnChanges, OnDestroy, OnInit {
private destroy$ = new Subject<void>();
private spinning$ = new BehaviorSubject(this.nzSpinning);
private delay$ = new ReplaySubject<number>(1);
isLoading = true;
isLoading = false;

constructor(public nzConfigService: NzConfigService, private cdr: ChangeDetectorRef) {}

Expand Down

0 comments on commit 36f92c6

Please sign in to comment.