Skip to content

Commit

Permalink
Fix: Page Size Windown (PanJiaChen#2810)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricargame authored Oct 16, 2024
1 parent 871d015 commit fd8c011
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ADempiere/TabManager/TabPanel/modeDesktop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
:total-records="recordsLength"
:selection="selectionsLength"
:page-number="currentPage"
:page-size="recordsWithFilter.length"
:page-size="recordsWithFilter"
:handle-change-page-number="handleChangePage"
:handle-change-page-size="handleChangeSizePage"
/>
Expand Down Expand Up @@ -275,7 +275,7 @@ export default defineComponent({

const recordsWithFilter = computed(() => {
if (props.containerManager && props.containerManager.getRecordsList) {
return props.containerManager.getRecordsList({
return props.containerManager.getPageSize({
containerUuid: props.tabAttributes.uuid
})
}
Expand Down

0 comments on commit fd8c011

Please sign in to comment.