From 5ed567c885253df70959534f2a3e5179b3a33e12 Mon Sep 17 00:00:00 2001 From: Tim Wilkinson Date: Fri, 16 Aug 2024 14:27:26 -0700 Subject: [PATCH] Open local services in a new tab (#1273) --- files/app/partial/local-services.ut | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/app/partial/local-services.ut b/files/app/partial/local-services.ut index 8c2e5b99..380d7bee 100755 --- a/files/app/partial/local-services.ut +++ b/files/app/partial/local-services.ut @@ -71,13 +71,13 @@ } switch (v[4]) { case "80": - push(services, `
${v[1]}${type}
`); + push(services, `
${v[1]}${type}
`); break; case "443": - push(services, `
${v[1]}${type}
`); + push(services, `
${v[1]}${type}
`); break; default: - push(services, `
${v[1]}${type}
`); + push(services, `
${v[1]}${type}
`); break; } }