From 60ba6e385ea1da964b8ba48ab025e414f25627ae Mon Sep 17 00:00:00 2001 From: Arnaud Date: Mon, 7 Apr 2025 12:20:40 +0200 Subject: [PATCH] Ignore port when 80 or 443 --- src/components/HealthChecks/HealthChecks.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/HealthChecks/HealthChecks.tsx b/src/components/HealthChecks/HealthChecks.tsx index cd45145..1bef236 100644 --- a/src/components/HealthChecks/HealthChecks.tsx +++ b/src/components/HealthChecks/HealthChecks.tsx @@ -99,7 +99,7 @@ export function HealthChecks({ online, onStepValid }: Props) { const onSave = () => { let url = address; - if (port) { + if (port && port != "80" && port != "443") { url += ":" + port; }