From e771339c02bd423d0307352e296c092595a2a314 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Wed, 27 Nov 2024 19:41:26 +1300 Subject: [PATCH] show this device by default in http connection page --- src/components/pages/ConnectViaHttpPage.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/components/pages/ConnectViaHttpPage.vue b/src/components/pages/ConnectViaHttpPage.vue index 88366ab..19ae4cd 100644 --- a/src/components/pages/ConnectViaHttpPage.vue +++ b/src/components/pages/ConnectViaHttpPage.vue @@ -19,9 +19,15 @@ + +
This Device
+
+
{{ thisDeviceAddress }}
+
+
Connection History
-
+
{{ address }}
@@ -157,5 +163,10 @@ export default { }, }, + computed: { + thisDeviceAddress() { + return window.location.origin; + }, + }, }