optimized-react-component-library-xyz123 0.22.4 → 0.22.5
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -118,10 +118,10 @@ var InputRadio = ({
|
|
|
118
118
|
const groupId = `radio-group-${question.id}`;
|
|
119
119
|
const errorId = `error-${question.id}`;
|
|
120
120
|
const languageObj = question.languageSupport[0];
|
|
121
|
-
|
|
121
|
+
var optionsInfoText = [];
|
|
122
122
|
if ("optionsInfoText" in languageObj) {
|
|
123
123
|
optionsInfoText.push(languageObj.optionsInfoText);
|
|
124
|
-
console.log(languageObj.optionsInfoText, question);
|
|
124
|
+
console.log(languageObj.optionsInfoText, "q", optionsInfoText, question);
|
|
125
125
|
}
|
|
126
126
|
console.log((_a = optionsInfoText.find(
|
|
127
127
|
(op) => op.value === question.answer
|