Commit db6c0b6 1 parent 02c373c commit db6c0b6 Copy full SHA for db6c0b6
File tree 1 file changed +3
-3
lines changed
modules/ensemble/lib/widget/input
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -528,20 +528,20 @@ class TextInputState extends FormFieldWidgetState<BaseTextInput>
528
528
return Utils .translateWithFallback (
529
529
'ensemble.input.validation.invalidEmailType' ,
530
530
'Please enter a valid email address' );
531
- }
531
+ }
532
532
} else if (widget._controller.inputType ==
533
533
InputType .ipAddress.name) {
534
534
if (! InputValidator .ipAddress (value)) {
535
535
return Utils .translateWithFallback (
536
536
'ensemble.input.validation.invalidIPAddressType' ,
537
537
'Please enter a valid IP Address' );
538
- }
538
+ }
539
539
} else if (widget._controller.inputType == InputType .phone.name) {
540
540
if (! InputValidator .phone (value)) {
541
541
return Utils .translateWithFallback (
542
542
'ensemble.input.validation.invalidPhoneType' ,
543
543
"Please enter a valid Phone Number" );
544
- }
544
+ }
545
545
}
546
546
}
547
547
return null ;
You can’t perform that action at this time.
0 commit comments