hrm_ui_lib 1.2.7 → 1.3.0
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.
|
@@ -118,10 +118,12 @@ var MultiBase = function MultiBase(props) {
|
|
|
118
118
|
setAllSelected(true);
|
|
119
119
|
var allValues = filteredData.map(function (item) {
|
|
120
120
|
var value = item.value,
|
|
121
|
-
label = item.label
|
|
121
|
+
label = item.label,
|
|
122
|
+
meta = item.meta;
|
|
122
123
|
return {
|
|
123
124
|
value: value,
|
|
124
|
-
label: label
|
|
125
|
+
label: label,
|
|
126
|
+
meta: meta
|
|
125
127
|
};
|
|
126
128
|
});
|
|
127
129
|
setSelectedValues(allValues);
|