We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49104a commit a69d58eCopy full SHA for a69d58e
src/components/ZclAttributeReportingManager.vue
@@ -84,16 +84,16 @@ limitations under the License.
84
<q-td key="required" :props="props" auto-width>
85
{{ props.row.reportingPolicy }}
86
</q-td>
87
+ <q-td key="clientServer" :props="props" auto-width>{{
88
+ props.row.side === 'client' ? 'Client' : 'Server'
89
+ }}</q-td>
90
<q-td key="mfgID" :props="props" auto-width>{{
91
selectedCluster.manufacturerCode
92
? asHex(selectedCluster.manufacturerCode, 4)
93
: props.row.manufacturerCode
94
? asHex(props.row.manufacturerCode, 4)
95
: ''
96
}}</q-td>
- <q-td key="clientServer" :props="props" auto-width>{{
- props.row.side === 'client' ? 'Client' : 'Server'
- }}</q-td>
97
<q-td key="min" :props="props" auto-width>
98
<q-input
99
dense
0 commit comments