Use simpler and less restrictive server url regex

The old regex was too restrictive. The new one will allow invalid urls, but we don't gain anything from preventing that

BUG: 486888
This commit is contained in:
Tobias Fella
2024-05-24 17:06:02 +02:00
parent 9d650519c7
commit 8199653ddd

View File

@@ -130,7 +130,7 @@ QQC2.ComboBox {
}
validator: RegularExpressionValidator {
regularExpression: /^[a-zA-Z0-9-]{1,61}\.([a-zA-Z]{2,}|[a-zA-Z0-9-]{2,}\.[a-zA-Z]{2,3})$/
regularExpression: /^([^.]+\.)+[^.]+$/
}
Connections {