react-survey-builder 1.0.21 → 1.0.22
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/lib/survey-elements/index.js +2 -2
- package/package.json +1 -1
@@ -1147,7 +1147,7 @@ var Checkboxes = /*#__PURE__*/function (_React$Component15) {
|
|
1147
1147
|
}, /*#__PURE__*/_react["default"].createElement(_reactBootstrap.Form.Group, {
|
1148
1148
|
className: "form-group mb-3"
|
1149
1149
|
}, /*#__PURE__*/_react["default"].createElement(_componentLabel["default"], (0, _extends2["default"])({}, this.props, {
|
1150
|
-
htmlFor: props.name
|
1150
|
+
htmlFor: this.props.name
|
1151
1151
|
})), /*#__PURE__*/_react["default"].createElement("div", null, this.props.item.options.filter(function (option) {
|
1152
1152
|
return _this20.props.value.includes(option.value);
|
1153
1153
|
}).map(function (option) {
|
@@ -1294,7 +1294,7 @@ var RadioButtons = /*#__PURE__*/function (_React$Component17) {
|
|
1294
1294
|
}, /*#__PURE__*/_react["default"].createElement(_reactBootstrap.Form.Group, {
|
1295
1295
|
className: "form-group mb-3"
|
1296
1296
|
}, /*#__PURE__*/_react["default"].createElement(_componentLabel["default"], (0, _extends2["default"])({}, this.props, {
|
1297
|
-
htmlFor: props.name
|
1297
|
+
htmlFor: this.props.name
|
1298
1298
|
})), /*#__PURE__*/_react["default"].createElement("div", null, this.props.item.options.filter(function (option) {
|
1299
1299
|
return _this24.props.value === option.value;
|
1300
1300
|
}).map(function (option) {
|