Skip to content

Commit a69d58e

Browse files
authored
Fixing the Attribute Reporting columns (#847)
* Fixing the columns so mfg code is not shown under Client/Server and vice versa * Keeping the columns consistent with the other tabs
1 parent f49104a commit a69d58e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/ZclAttributeReportingManager.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,16 @@ limitations under the License.
8484
<q-td key="required" :props="props" auto-width>
8585
{{ props.row.reportingPolicy }}
8686
</q-td>
87+
<q-td key="clientServer" :props="props" auto-width>{{
88+
props.row.side === 'client' ? 'Client' : 'Server'
89+
}}</q-td>
8790
<q-td key="mfgID" :props="props" auto-width>{{
8891
selectedCluster.manufacturerCode
8992
? asHex(selectedCluster.manufacturerCode, 4)
9093
: props.row.manufacturerCode
9194
? asHex(props.row.manufacturerCode, 4)
9295
: ''
9396
}}</q-td>
94-
<q-td key="clientServer" :props="props" auto-width>{{
95-
props.row.side === 'client' ? 'Client' : 'Server'
96-
}}</q-td>
9797
<q-td key="min" :props="props" auto-width>
9898
<q-input
9999
dense

0 commit comments

Comments
 (0)