fix(VnPaginate): disable pagination
gitea/salix-front/pipeline/pr-master There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2024-11-19 09:32:35 +01:00
parent 00fdbfa2e4
commit e7b431e9ec
3 changed files with 4 additions and 2 deletions

View File

@ -141,6 +141,8 @@ async function fetch(params) {
}
async function paginate() {
if (props.disableInfiniteScroll || !store.hasMoreData) return;
const { page, rowsPerPage, sortBy, descending } = pagination.value;
if (!props.url) return;

View File

@ -440,7 +440,7 @@ function handleOnDataSave({ CrudModelRef }) {
selection: 'multiple',
}"
:crud-model="{
paginate: false,
disableInfiniteScroll: true,
}"
v-model:selected="rowsSelected"
:row-click="saveOnRowChange"

View File

@ -621,7 +621,7 @@ watch(
}"
:create-as-dialog="false"
:crud-model="{
paginate: false,
disableInfiniteScroll: true,
}"
:default-remove="false"
:default-reset="false"