|
|
|
@ -309,7 +309,7 @@ class CreateRequestPageState extends State<CreateRequestPage> {
|
|
|
|
prefixIconData: FontAwesomeIcons.triangleExclamation,
|
|
|
|
prefixIconData: FontAwesomeIcons.triangleExclamation,
|
|
|
|
style: Theme.of(context).textTheme.titleLarge,
|
|
|
|
style: Theme.of(context).textTheme.titleLarge,
|
|
|
|
textInputType: TextInputType.multiline,
|
|
|
|
textInputType: TextInputType.multiline,
|
|
|
|
validator: (value) => Validator.hasValue(value) ? null : _subtitle.maintenanceIssueRequired,
|
|
|
|
validator: (value) => widget.serviceRequest != null || Validator.hasValue(value) ? null : _subtitle.maintenanceIssueRequired,
|
|
|
|
onSaved: (value) {
|
|
|
|
onSaved: (value) {
|
|
|
|
_serviceRequest.callComments = value;
|
|
|
|
_serviceRequest.callComments = value;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|