Address mouseover QR code

This commit is contained in:
Mononaut
2024-06-10 23:12:41 +00:00
parent 9514bb703b
commit 331b54fe89
3 changed files with 16 additions and 13 deletions

View File

@@ -97,6 +97,7 @@ export class AddressComponent implements OnInit, OnDestroy {
network = '';
isMobile: boolean;
showQR: boolean = false;
address: Address;
addressString: string;
@@ -141,6 +142,8 @@ export class AddressComponent implements OnInit, OnDestroy {
this.stateService.networkChanged$.subscribe((network) => this.network = network);
this.websocketService.want(['blocks']);
this.onResize();
this.addressLoadingStatus$ = this.route.paramMap
.pipe(
switchMap(() => this.stateService.loadingIndicators$),