Skip to content

Commit db6c0b6

Browse files
committed
fixed indentation
1 parent 02c373c commit db6c0b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/ensemble/lib/widget/input/form_textfield.dart

+3-3
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)