diff --git a/examples/clientsocket/components/tabs/ConnectionTab.vue b/examples/clientsocket/components/tabs/ConnectionTab.vue index 570de98f..988e02f8 100644 --- a/examples/clientsocket/components/tabs/ConnectionTab.vue +++ b/examples/clientsocket/components/tabs/ConnectionTab.vue @@ -45,30 +45,21 @@
@@ -82,7 +73,7 @@ @click="connect" > - {{ isConnected ? 'Reconnect' : 'Connect' }} + {{ isConnected ? "Reconnect" : "Connect" }}
@@ -164,11 +152,11 @@
Static ID: - {{ connectionState.staticId || 'N/A' }} + {{ connectionState.staticId || "N/A" }}
IP Address: - {{ connectionState.ipAddress || 'N/A' }} + {{ connectionState.ipAddress || "N/A" }}
User ID: @@ -180,7 +168,9 @@
Connected At: - {{ new Date(connectionState.connectionStartTime || 0).toLocaleString() }} + {{ + new Date(connectionState.connectionStartTime || 0).toLocaleString() + }}
Latency: @@ -196,8 +186,8 @@