rerobe-js-orm 2.4.94 → 2.4.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -91,6 +91,12 @@ class OrderFormState extends FormState_1.default {
|
|
|
91
91
|
const hidden = false;
|
|
92
92
|
if (fieldType === 'textInput') {
|
|
93
93
|
let inputValue = this.props[fieldKey] || '';
|
|
94
|
+
if (fieldKey === 'firstName') {
|
|
95
|
+
inputValue = this.props.name ? this.props.name.split(' ')[0] : '';
|
|
96
|
+
}
|
|
97
|
+
if (fieldKey === 'lastName') {
|
|
98
|
+
inputValue = this.props.name && this.props.name.split(' ').length > 1 ? this.props.name.split(' ')[1] : '';
|
|
99
|
+
}
|
|
94
100
|
if (fieldKey === 'subtotalPrice' ||
|
|
95
101
|
fieldKey === 'totalPrice' ||
|
|
96
102
|
fieldKey === 'totalDiscount' ||
|