@iobroker/adapter-react-v5 8.2.5 → 8.2.6
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/README.md +1 -1
- package/build/Components/ObjectBrowser.js +6 -1
- package/build/Components/ObjectBrowser.js.map +1 -1
- package/build/Components/objectBrowser.types.d.ts +1 -0
- package/build/Components/objectBrowserUtils.js +1 -1
- package/build/Components/objectBrowserUtils.js.map +1 -1
- package/build/Theme.js +1 -0
- package/build/Theme.js.map +1 -1
- package/build/types.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2971,7 +2971,12 @@ export class ObjectBrowserClass extends Component {
|
|
|
2971
2971
|
// <IconEdit className="copyButton" style={{{ ...styles.cellButtonsValueButton, styles.cellButtonsValueButtonEdit)} key="ce" />
|
|
2972
2972
|
info = item.data.state;
|
|
2973
2973
|
}
|
|
2974
|
-
info.style = getValueStyle({
|
|
2974
|
+
info.style = getValueStyle({
|
|
2975
|
+
state,
|
|
2976
|
+
isExpertMode: this.state.filter.expertMode,
|
|
2977
|
+
isButton: item.data.button,
|
|
2978
|
+
nonAckColor: this.props.theme.palette.nonAck,
|
|
2979
|
+
});
|
|
2975
2980
|
let val = info.valTextRx;
|
|
2976
2981
|
if (!this.state.filter.expertMode) {
|
|
2977
2982
|
if (item.data.button) {
|