@iobroker/adapter-react-v5 7.7.3 → 7.7.4
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/build/Components/CustomModal.js +1 -1
- package/build/Components/CustomModal.js.map +1 -1
- package/build/Components/FileBrowser.js.map +1 -1
- package/build/Components/ObjectBrowser.d.ts +5 -5
- package/build/Components/ObjectBrowser.js +76 -37
- package/build/Components/ObjectBrowser.js.map +1 -1
- package/build/Components/Utils.js +1 -2
- package/build/Components/Utils.js.map +1 -1
- package/build/Dialogs/SelectID.d.ts +5 -5
- package/build/Dialogs/SelectID.js.map +1 -1
- package/package.json +2 -2
|
@@ -838,8 +838,7 @@ export class Utils {
|
|
|
838
838
|
// If smart name deleted
|
|
839
839
|
if (smartName &&
|
|
840
840
|
(!smartName[language] ||
|
|
841
|
-
(smartName[language] === sureStateObject.common.name &&
|
|
842
|
-
(!sureStateObject.common.role || sureStateObject.common.role.includes('button'))))) {
|
|
841
|
+
(smartName[language] === sureStateObject.common.name && !sureStateObject.common.role))) {
|
|
843
842
|
delete smartName[language];
|
|
844
843
|
let empty = true;
|
|
845
844
|
// Check if the structure has any definitions
|