@etsoo/materialui 1.1.34 → 1.1.35
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/lib/ComboBox.js +1 -8
- package/package.json +1 -1
- package/src/ComboBox.tsx +1 -8
package/lib/ComboBox.js
CHANGED
|
@@ -117,14 +117,7 @@ export function ComboBox(props) {
|
|
|
117
117
|
}
|
|
118
118
|
setOptions(result);
|
|
119
119
|
});
|
|
120
|
-
}, [
|
|
121
|
-
propertyWay,
|
|
122
|
-
loadData,
|
|
123
|
-
onLoadData,
|
|
124
|
-
autoAddBlankItem,
|
|
125
|
-
idField,
|
|
126
|
-
labelField
|
|
127
|
-
]);
|
|
120
|
+
}, [propertyWay, autoAddBlankItem, idField, labelField]);
|
|
128
121
|
React.useEffect(() => {
|
|
129
122
|
return () => {
|
|
130
123
|
isMounted.current = false;
|
package/package.json
CHANGED
package/src/ComboBox.tsx
CHANGED
|
@@ -235,14 +235,7 @@ export function ComboBox<
|
|
|
235
235
|
}
|
|
236
236
|
setOptions(result);
|
|
237
237
|
});
|
|
238
|
-
}, [
|
|
239
|
-
propertyWay,
|
|
240
|
-
loadData,
|
|
241
|
-
onLoadData,
|
|
242
|
-
autoAddBlankItem,
|
|
243
|
-
idField,
|
|
244
|
-
labelField
|
|
245
|
-
]);
|
|
238
|
+
}, [propertyWay, autoAddBlankItem, idField, labelField]);
|
|
246
239
|
|
|
247
240
|
React.useEffect(() => {
|
|
248
241
|
return () => {
|