File tree 1 file changed +2
-3
lines changed
ui/src/components/Tunnels
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 22
22
>
23
23
<td class =" text-center" data-test =" device-tunnel-url" >
24
24
<a
25
- :href =" `${urlProtocol}//${tunnel.address}.${url} `"
25
+ :href =" `${urlProtocol}//${tunnel.address}`"
26
26
target =" _blank"
27
27
rel =" noopener noreferrer"
28
28
:data-test =" `device-tunnel-link-${i}`"
29
29
@click =" handleTunnelLinkClick"
30
30
>
31
- {{ `${urlProtocol}//${tunnel.address}.${url} ` }}
31
+ {{ `${urlProtocol}//${tunnel.address}` }}
32
32
</a >
33
33
</td >
34
34
@@ -76,7 +76,6 @@ const store = useStore();
76
76
const route = useRoute ();
77
77
const tunnelList = computed (() => store .getters [" tunnels/listTunnels" ]);
78
78
const deviceId = computed (() => route .params .id );
79
- const url = ref (envVariables .tunnelsDomain || window .location .host );
80
79
const urlProtocol = ref (window .location .protocol );
81
80
82
81
const getTunnels = async () => {
You can’t perform that action at this time.
0 commit comments