forked from verdnatura/salix-front
Merge pull request 'Fix Call back when hasMoreData' (!707) from fix_VnTable_infiniteScroll into dev
Reviewed-on: verdnatura/salix-front#707 Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
commit
856d551503
|
@ -369,7 +369,7 @@ function handleOnDataSaved(_) {
|
|||
@on-fetch="(...args) => emit('onFetch', ...args)"
|
||||
:search-url="searchUrl"
|
||||
:disable-infinite-scroll="
|
||||
$attrs['disableInfiniteScroll'] ? isTableMode : disableInfiniteScroll
|
||||
$attrs['disableInfiniteScroll'] ? isTableMode : !disableInfiniteScroll
|
||||
"
|
||||
@save-changes="reload"
|
||||
:has-sub-toolbar="$props.hasSubToolbar ?? isEditable"
|
||||
|
|
|
@ -151,6 +151,7 @@ const setShippedColor = (date) => {
|
|||
:disable-option="{ card: true, table: true }"
|
||||
limit="5"
|
||||
class="full-width"
|
||||
:disable-infinite-scroll="true"
|
||||
>
|
||||
<template #column-nickname="{ row }">
|
||||
<span class="link">
|
||||
|
|
Loading…
Reference in New Issue