diff --git a/src/utils/utils.ts b/src/utils/utils.ts index e2ed963aa..204991cea 100644 --- a/src/utils/utils.ts +++ b/src/utils/utils.ts @@ -110,6 +110,10 @@ export function getLink(endpointObj: Endpoint) { if (appProtocol && appProtocol !== '') { protocol = appProtocol; } + // Support to open this address in a new window directly. + if (protocol == 'tcp') { + protocol = 'http'; + } if (host == '') { return path; }