Prepend network name to title when on testnet or liquid.

This commit is contained in:
softsimon
2020-04-04 21:47:05 +07:00
parent b082763438
commit d7a7095b8d
4 changed files with 17 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ export class TransactionComponent implements OnInit, OnDestroy {
this.route.paramMap.pipe(
switchMap((params: ParamMap) => {
this.txId = params.get('id') || '';
this.seoService.setTitle('Transaction: ' + this.txId);
this.seoService.setTitle('Transaction: ' + this.txId, true);
this.error = undefined;
this.feeRating = undefined;
this.isLoadingTx = true;