Strip whitespace for new customer fields, in new custorder page
This commit is contained in:
parent
0b25469f33
commit
e672e9670f
|
@ -415,21 +415,21 @@
|
|||
<section class="modal-card-body">
|
||||
<b-field grouped>
|
||||
<b-field label="First Name">
|
||||
<b-input v-model="editNewCustomerFirstName"
|
||||
<b-input v-model.trim="editNewCustomerFirstName"
|
||||
ref="editNewCustomerInput">
|
||||
</b-input>
|
||||
</b-field>
|
||||
<b-field label="Last Name">
|
||||
<b-input v-model="editNewCustomerLastName">
|
||||
<b-input v-model.trim="editNewCustomerLastName">
|
||||
</b-input>
|
||||
</b-field>
|
||||
</b-field>
|
||||
<b-field grouped>
|
||||
<b-field label="Phone Number">
|
||||
<b-input v-model="editNewCustomerPhone"></b-input>
|
||||
<b-input v-model.trim="editNewCustomerPhone"></b-input>
|
||||
</b-field>
|
||||
<b-field label="Email Address">
|
||||
<b-input v-model="editNewCustomerEmail"></b-input>
|
||||
<b-input v-model.trim="editNewCustomerEmail"></b-input>
|
||||
</b-field>
|
||||
</b-field>
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue