Skip to content

Commit

Permalink
Fix glitchy scrolling in attributes by removing virtual-scroll (#1377)
Browse files Browse the repository at this point in the history
* Fix glitchy scrolling in attributes by removing virtual-scroll

- Solved issue #1375

- Removed virtual-scroll from q-table component in the ZAP GUI

- Add pagination of 50 rows per page to avoid long loading time
  • Loading branch information
ethanzhouyc authored Aug 6, 2024
1 parent ed938c9 commit f8d2523
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/ZclAttributeManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ limitations under the License.
row-key="<b>name</b>"
dense
flat
virtual-scroll
binary-state-sort
v-model:pagination="pagination"
:sort-method="customAttributeSort"
Expand Down Expand Up @@ -415,7 +414,7 @@ export default {
data() {
return {
pagination: {
rowsPerPage: 0,
rowsPerPage: 50,
sortBy: 'clientServer',
},
columns: [],
Expand Down

0 comments on commit f8d2523

Please sign in to comment.