Skip to content

Commit

Permalink
Fix commands not displayed in Matter clusters (#1425)
Browse files Browse the repository at this point in the history
- Fixed issue #1424.

- Removed virtual scroll to ensure all commands are properly displayed.

- Added pagination of 50 rows, same as the approach used for attributes.
  • Loading branch information
ethanzhouyc authored Sep 13, 2024
1 parent 24a9bc3 commit 309238b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/ZclCommandManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ limitations under the License.
:columns="columns"
row-key="<b>name</b>"
dense
virtual-scroll
flat
binary-state-sort
v-model:pagination="pagination"
Expand Down Expand Up @@ -226,7 +225,7 @@ export default {
validationErrorMessage:
'This command is mandatory for the cluster and device type configuration you have enabled',
pagination: {
rowsPerPage: 0
rowsPerPage: 50
},
columns: [
{
Expand Down

0 comments on commit 309238b

Please sign in to comment.