ls-pro-common 1.0.23 → 1.0.24
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.
|
@@ -107,7 +107,7 @@ function InputTable(prop) {
|
|
|
107
107
|
var _formRef$current;
|
|
108
108
|
|
|
109
109
|
var formValue = formRef === null || formRef === void 0 ? void 0 : (_formRef$current = formRef.current) === null || _formRef$current === void 0 ? void 0 : _formRef$current.getFieldsValue();
|
|
110
|
-
var txt = formValue[
|
|
110
|
+
var txt = formValue[textName || name];
|
|
111
111
|
|
|
112
112
|
if (txt) {
|
|
113
113
|
setText(txt);
|
|
@@ -133,7 +133,7 @@ function InputTable(prop) {
|
|
|
133
133
|
var _formRef$current;
|
|
134
134
|
|
|
135
135
|
var formValue = formRef === null || formRef === void 0 ? void 0 : (_formRef$current = formRef.current) === null || _formRef$current === void 0 ? void 0 : _formRef$current.getFieldsValue();
|
|
136
|
-
var txt = formValue[
|
|
136
|
+
var txt = formValue[textName || name];
|
|
137
137
|
|
|
138
138
|
if (txt) {
|
|
139
139
|
setText(txt);
|