begin logs improvement and combination

This commit is contained in:
Matt Hill
2021-08-23 16:00:53 -06:00
committed by Aiden McClelland
parent e9db083004
commit 5c2f724e0c
6 changed files with 26 additions and 15 deletions

View File

@@ -38,9 +38,9 @@
<ion-skeleton-text animated style="width: 150px; margin-bottom: 18px;"></ion-skeleton-text>
<ion-skeleton-text animated style="width: 300px;"></ion-skeleton-text>
</ion-label>
<ion-avatar slot="end">
<ion-skeleton-text animated style="width: 80px; border-radius: 0"></ion-skeleton-text>
</ion-avatar>
<ion-button slot="end" fill="clear">
<ion-skeleton-text animated style="width: 60px; border-radius: 0"></ion-skeleton-text>
</ion-button>
</ion-item>
</ng-container>

View File

@@ -24,18 +24,18 @@
<ion-item>
<ion-label class="break-all">
<h2>Tor Address</h2>
<p>http://{{ server['tor-address'] }}</p>
<p>{{ server['tor-address'] }}</p>
</ion-label>
<ion-button slot="end" fill="clear" (click)="copy('http://' + server['tor-address'])">
<ion-button slot="end" fill="clear" (click)="copy(server['tor-address'])">
<ion-icon slot="icon-only" name="copy-outline"></ion-icon>
</ion-button>
</ion-item>
<ion-item>
<ion-label class="break-all">
<h2>LAN Address</h2>
<p>https://{{ server['lan-address'] }}</p>
<p>{{ server['lan-address'] }}</p>
</ion-label>
<ion-button slot="end" fill="clear" (click)="copy('https://' + server['lan-address'])">
<ion-button slot="end" fill="clear" (click)="copy(server['lan-address'])">
<ion-icon slot="icon-only" name="copy-outline"></ion-icon>
</ion-button>
</ion-item>