Liquid dashboard updates. About page link.

This commit is contained in:
softsimon
2021-07-29 12:32:54 +03:00
parent 2de28b9926
commit e670f80fed
6 changed files with 20 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
import { Component, OnInit, OnDestroy, ChangeDetectionStrategy } from '@angular/core';
import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';
import { StateService } from 'src/app/services/state.service';
import { Subscription, Observable } from 'rxjs';
import { Observable } from 'rxjs';
@Component({
selector: 'app-blockchain',
@@ -10,6 +10,7 @@ import { Subscription, Observable } from 'rxjs';
})
export class BlockchainComponent implements OnInit {
isLoading$: Observable<boolean>;
network: string;
constructor(
private stateService: StateService,
@@ -17,5 +18,6 @@ export class BlockchainComponent implements OnInit {
ngOnInit() {
this.isLoading$ = this.stateService.isLoadingWebSocket$;
this.network = this.stateService.network;
}
}