sag_components 1.0.384 → 1.0.388
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.
|
@@ -214,7 +214,6 @@ var DropdownMulti = exports.DropdownMulti = function DropdownMulti(_ref) {
|
|
|
214
214
|
limitTags: limitTagsOnMultiSelect,
|
|
215
215
|
id: "checkboxes-tags",
|
|
216
216
|
options: options,
|
|
217
|
-
value: selectedOptionsState,
|
|
218
217
|
disabled: disabled,
|
|
219
218
|
disableCloseOnSelect: true,
|
|
220
219
|
disableClearable: disableClearable,
|
|
@@ -230,7 +229,7 @@ var DropdownMulti = exports.DropdownMulti = function DropdownMulti(_ref) {
|
|
|
230
229
|
return /*#__PURE__*/_react.default.createElement("li", props, /*#__PURE__*/_react.default.createElement(_Checkbox.default, {
|
|
231
230
|
icon: icon,
|
|
232
231
|
checkedIcon: checkedIcon,
|
|
233
|
-
checked:
|
|
232
|
+
checked: isOptionChecked(option) //{selected} //
|
|
234
233
|
}), option.label, /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, " ", console.log("selected", option, selected)));
|
|
235
234
|
},
|
|
236
235
|
renderInput: function renderInput(params) {
|