You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ignoreInVersions check in the readAdapterList function only checks if any widget set is ignored in version 2 of vis.
If you have more than one widget set (one for vis1, one for vis2), the adapter will not take this into account.
The ignoreInVersions check in the readAdapterList function only checks if any widget set is ignored in version 2 of vis.
If you have more than one widget set (one for vis1, one for vis2), the adapter will not take this into account.
ioBroker.vis-2/packages/iobroker.vis-2/src/main.ts
Line 168 in c8eba76
Object.values(obj?.common?.visWidgets).find(w => w?.ignoreInVersions?.includes(2))
mybe it is better to replace find with every:
Object.values(obj?.common?.visWidgets).every(w => w?.ignoreInVersions?.includes(2))
The text was updated successfully, but these errors were encountered: