Updated titles

This commit is contained in:
softsimon 2021-04-25 19:40:43 +04:00
parent da050ee3dc
commit 56518b9655
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7
2 changed files with 7 additions and 4 deletions

View File

@ -1,6 +1,6 @@
<div class="container-xl">
<h1>Trading volume</h1>
<h1>Bisq trading volume</h1>
<div id="volumeHolder">
<ng-template #loadingVolumes>
@ -13,9 +13,12 @@
</ng-container>
</div>
<br>
<br><br>
<h1>Markets</h1>
<h1>
<ng-template [ngIf]="stateService.env.OFFICIAL_BISQ_MARKETS" [ngIfElse]="nonOfficialMarkets">Markets</ng-template>
<ng-template #nonOfficialMarkets>Bitcoin markets</ng-template>
</h1>
<ng-container *ngIf="{ value: (tickers$ | async) } as tickers">
<table class="table table-borderless table-striped">

View File

@ -24,7 +24,7 @@ export class BisqDashboardComponent implements OnInit {
constructor(
private websocketService: WebsocketService,
private bisqApiService: BisqApiService,
private stateService: StateService,
public stateService: StateService,
private seoService: SeoService,
) { }