@things-factory/reference-app 7.0.60 → 7.0.62
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.
|
@@ -109,8 +109,10 @@ export class TreeViewPage extends connect(store)(PageView) {
|
|
|
109
109
|
<ox-tree-vertical
|
|
110
110
|
.data=${data}
|
|
111
111
|
.selected=${this.selected}
|
|
112
|
-
id-property="label"
|
|
113
112
|
@select=${this.onSelect.bind(this)}
|
|
113
|
+
id-property="label"
|
|
114
|
+
label-property="label"
|
|
115
|
+
description-property="label"
|
|
114
116
|
></ox-tree-vertical>
|
|
115
117
|
</div>
|
|
116
118
|
<div>
|
|
@@ -118,8 +120,10 @@ export class TreeViewPage extends connect(store)(PageView) {
|
|
|
118
120
|
<ox-tree
|
|
119
121
|
.data=${data}
|
|
120
122
|
.selected=${this.selected}
|
|
121
|
-
id-property="label"
|
|
122
123
|
@select=${this.onSelect.bind(this)}
|
|
124
|
+
id-property="label"
|
|
125
|
+
label-property="label"
|
|
126
|
+
description-property="label"
|
|
123
127
|
></ox-tree>
|
|
124
128
|
</div>
|
|
125
129
|
`
|