iobroker.mywebui 1.37.83 → 1.37.84

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/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "mywebui",
4
- "version": "1.37.83",
4
+ "version": "1.37.84",
5
5
  "titleLang": {
6
6
  "en": "mywebui",
7
7
  "de": "mywebui",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.mywebui",
3
- "version": "1.37.83",
3
+ "version": "1.37.84",
4
4
  "description": "ioBroker mywebui - Custom edited mywebui by gokturk413",
5
5
  "type": "module",
6
6
  "main": "dist/backend/main.js",
@@ -675,6 +675,8 @@ export class IobrokerWebuiScreenEditor extends BaseCustomWebComponentConstructor
675
675
  if (scriptObj?.default && !scriptObj?.connectedCallback)
676
676
  scriptObj = scriptObj.default;
677
677
  this._designerScriptObject = scriptObj;
678
+ if (scriptObj?.init)
679
+ scriptObj.init(rootEl, shadowRoot);
678
680
  if (scriptObj?.connectedCallback)
679
681
  scriptObj.connectedCallback(rootEl, shadowRoot);
680
682
  } catch (err) {