@iobroker/adapter-react-v5 6.0.8 → 6.0.9
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/Icon.js +1 -1
- package/README.md +3 -0
- package/package.json +1 -1
package/Components/Icon.js
CHANGED
|
@@ -97,7 +97,7 @@ function getSelectIdIcon(obj, imagePrefix) {
|
|
|
97
97
|
}
|
|
98
98
|
return src || null;
|
|
99
99
|
}
|
|
100
|
-
const REMOTE_SERVER = window.location.hostname.
|
|
100
|
+
const REMOTE_SERVER = window.location.hostname.endsWith('iobroker.in');
|
|
101
101
|
const REMOTE_PREFIX = window.location.pathname.substring(0, window.location.pathname.lastIndexOf('/') + 1);
|
|
102
102
|
function Icon(props) {
|
|
103
103
|
var _a, _b, _c;
|
package/README.md
CHANGED
|
@@ -771,6 +771,9 @@ The best practice is to replace `padding` with `p` and `margin` with `m`, so you
|
|
|
771
771
|
-->
|
|
772
772
|
|
|
773
773
|
## Changelog
|
|
774
|
+
### 6.0.9 (2024-06-26)
|
|
775
|
+
* (bluefox) Corrected Icons
|
|
776
|
+
|
|
774
777
|
### 6.0.8 (2024-06-26)
|
|
775
778
|
* (bluefox) Corrected types of the select ID dialog
|
|
776
779
|
* (bluefox) Made the tooltips neutral to the pointer events
|