File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
modules/ensemble/lib/widget/input Expand file tree Collapse file tree 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>
528528 return Utils .translateWithFallback (
529529 'ensemble.input.validation.invalidEmailType' ,
530530 'Please enter a valid email address' );
531- }
531+ }
532532 } else if (widget._controller.inputType ==
533533 InputType .ipAddress.name) {
534534 if (! InputValidator .ipAddress (value)) {
535535 return Utils .translateWithFallback (
536536 'ensemble.input.validation.invalidIPAddressType' ,
537537 'Please enter a valid IP Address' );
538- }
538+ }
539539 } else if (widget._controller.inputType == InputType .phone.name) {
540540 if (! InputValidator .phone (value)) {
541541 return Utils .translateWithFallback (
542542 'ensemble.input.validation.invalidPhoneType' ,
543543 "Please enter a valid Phone Number" );
544- }
544+ }
545545 }
546546 }
547547 return null ;
You can’t perform that action at this time.
0 commit comments