Fix liquid.network and bisq.markets page titles in SEO services

This commit is contained in:
wiz 2021-08-05 22:45:03 +09:00
parent 5cdcf277e4
commit 53fb578b58

View File

@ -27,6 +27,10 @@ export class SeoService {
}
getTitle(): string {
if (this.network === 'liquid')
return 'mempool - Liquid Network';
if (this.network === 'bisq')
return 'mempool - Bisq Markets';
return 'mempool - ' + (this.network ? this.ucfirst(this.network) : 'Bitcoin') + ' Explorer';
}