Ignore port when 80 or 443

This commit is contained in:
Arnaud 2025-04-07 12:20:40 +02:00
parent 18cffa0e02
commit 60ba6e385e
No known key found for this signature in database
GPG Key ID: 69D6CE281FCAE663

View File

@ -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;
}