optimized-react-component-library-xyz123 0.13.4 → 0.13.6
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.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1212,7 +1212,7 @@ var MultipleTextField = ({
|
|
|
1212
1212
|
setArrayOfTextFields(updatedTextFields);
|
|
1213
1213
|
alert("Updated text fields: " + JSON.stringify(updatedTextFields));
|
|
1214
1214
|
setTextfieldValues(updatedTextFields.map((field) => field.value));
|
|
1215
|
-
const e = { target: { value:
|
|
1215
|
+
const e = { target: { value: updatedTextFields.map((field) => field.value).toString() } };
|
|
1216
1216
|
handleQuestionInputChange(e, question);
|
|
1217
1217
|
};
|
|
1218
1218
|
return /* @__PURE__ */ jsxs12(Fragment14, { children: [
|