From 08114728d6c6dead441d3f94141985994d808de7 Mon Sep 17 00:00:00 2001 From: Noelia Date: Tue, 12 Mar 2024 16:47:20 +0100 Subject: [PATCH] fix(CollectibleView): Some strange layout behaviour caused by this syntax Syntax error. --- .../AppLayouts/Wallet/views/collectibles/CollectibleView.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Wallet/views/collectibles/CollectibleView.qml b/ui/app/AppLayouts/Wallet/views/collectibles/CollectibleView.qml index 96e1447982..911dfba27f 100644 --- a/ui/app/AppLayouts/Wallet/views/collectibles/CollectibleView.qml +++ b/ui/app/AppLayouts/Wallet/views/collectibles/CollectibleView.qml @@ -36,8 +36,9 @@ Control { (privilegesLevel === Constants.TokenPrivilegesLevel.TMaster) property color ornamentColor // Relevant color for these special tokens (community color) - readonly property var d: QtObject { + QtObject { id: d + readonly property bool unknownCommunityName: root.communityName.startsWith("0x") && root.communityId === root.communityName }