@iobroker/adapter-react-v5 3.1.30 → 3.1.31
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/Components/ObjectBrowser.js +1 -1
- package/Components/ObjectBrowser.js.map +1 -1
- package/GenericApp.js +22 -7
- package/GenericApp.js.map +1 -1
- package/README.md +3 -0
- package/package.json +1 -1
|
@@ -2922,7 +2922,7 @@ var ObjectBrowser = /*#__PURE__*/function (_Component) {
|
|
|
2922
2922
|
|
|
2923
2923
|
if (props.types && props.types[0] !== 'state') {
|
|
2924
2924
|
if (props.length >= 1) {
|
|
2925
|
-
console.error('more than one type does not supported!');
|
|
2925
|
+
console.error('more than one type does not supported! Use filterFunc instead');
|
|
2926
2926
|
}
|
|
2927
2927
|
|
|
2928
2928
|
return props.socket.getObjectView(null, null, props.types[0]);
|