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' ||
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "2.4.94",
3
+ "version": "2.4.95",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",