Skip to content

Commit b7e6050

Browse files
authored
Fixing the UI for attribute reporting (#1649)
- Now custom clusters show attribute reporting - JIRA: ZAPP-1655
1 parent e0f466a commit b7e6050

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/ZclClusterView.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,8 @@ export default {
243243
},
244244
enableAttributeReportingTab: {
245245
get() {
246-
return this.category === dbEnum.helperCategory.zigbee
246+
// Showing attribute reporting when there is no category. Needed for custom xml.
247+
return this.category === dbEnum.helperCategory.zigbee || !this.category
247248
}
248249
}
249250
},

0 commit comments

Comments
 (0)