From 42c7a9c33a3571b054e269b1df3f5622ac31f8fabf0b93acb47c90248fc89625 Mon Sep 17 00:00:00 2001 From: linuxero Date: Tue, 4 Feb 2025 10:06:03 +0100 Subject: [PATCH] Regular expression email in kunden --- Gui/CustomerView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gui/CustomerView.qml b/Gui/CustomerView.qml index 6aec469..bb861d1 100644 --- a/Gui/CustomerView.qml +++ b/Gui/CustomerView.qml @@ -178,7 +178,7 @@ GridLayout Layout.columnSpan: 3 validator: RegularExpressionValidator { - regularExpression: /([\+!#$%&‘\*\–\/\=?\^_`\.{|}\~0-9A-Za-z]{1,185})@([0-9A-Za-z\.]{1,64})\.([a-zA-z]{2,5})/ + regularExpression: /([\+!#$%&‘\*\–\/\=?\^_`\.{|}\~\-\_0-9A-Za-z]{1,185})@([0-9A-Za-z\.\-\_]{1,64})\.([a-zA-z]{2,5})/ } }