Add seo title to pegs and utxos tables

This commit is contained in:
natsoni 2024-02-04 12:34:40 +01:00
parent 163c0b6d78
commit 7bfc649042
No known key found for this signature in database
GPG Key ID: C65917583181743B
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { SeoService } from '../../../services/seo.service';
@Component({
selector: 'app-federation-wallet',
@ -7,7 +8,11 @@ import { Component, OnInit } from '@angular/core';
})
export class FederationWalletComponent implements OnInit {
constructor() { }
constructor(
private seoService: SeoService
) {
this.seoService.setTitle($localize`:@@993e5bc509c26db81d93018e24a6afe6e50cae52:Liquid Federation Wallet`);
}
ngOnInit(): void {
}

View File

@ -5,6 +5,7 @@ import { ApiService } from '../../../services/api.service';
import { Env, StateService } from '../../../services/state.service';
import { AuditStatus, CurrentPegs, FederationUtxo, RecentPeg } from '../../../interfaces/node-api.interface';
import { WebsocketService } from '../../../services/websocket.service';
import { SeoService } from '../../../services/seo.service';
@Component({
selector: 'app-recent-pegs-list',
@ -39,6 +40,7 @@ export class RecentPegsListComponent implements OnInit {
private apiService: ApiService,
public stateService: StateService,
private websocketService: WebsocketService,
private seoService: SeoService
) {
}
@ -48,6 +50,7 @@ export class RecentPegsListComponent implements OnInit {
this.skeletonLines = this.widget === true ? [...Array(6).keys()] : [...Array(15).keys()];
if (!this.widget) {
this.seoService.setTitle($localize`:@@a8b0889ea1b41888f1e247f2731cc9322198ca04:Recent Peg-In / Out's`);
this.websocketService.want(['blocks']);
this.auditStatus$ = this.stateService.blocks$.pipe(
takeUntil(this.destroy$),