0
0
Fork 0

perf: refs #7679 change limit value

This commit is contained in:
Javier Segarra 2024-10-09 00:44:54 +02:00
parent 9edf35fba2
commit 801b6585e8
2 changed files with 4 additions and 4 deletions

View File

@ -135,14 +135,14 @@ async function handleCountries(data) {
ref="provincesFetchDataRef" ref="provincesFetchDataRef"
@on-fetch="handleProvinces" @on-fetch="handleProvinces"
:sort-by="['name ASC']" :sort-by="['name ASC']"
:limit="100" :limit="30"
auto-load auto-load
url="Provinces/location" url="Provinces/location"
/> />
<FetchData <FetchData
ref="townsFetchDataRef" ref="townsFetchDataRef"
:sort-by="['name ASC']" :sort-by="['name ASC']"
:limit="100" :limit="30"
@on-fetch="handleTowns" @on-fetch="handleTowns"
auto-load auto-load
url="Towns/location" url="Towns/location"
@ -150,7 +150,7 @@ async function handleCountries(data) {
<FetchData <FetchData
@on-fetch="handleCountries" @on-fetch="handleCountries"
:sort-by="['name ASC']" :sort-by="['name ASC']"
:limit="100" :limit="30"
auto-load auto-load
url="Countries" url="Countries"
/> />

View File

@ -47,7 +47,7 @@ const onDataSaved = (dataSaved, requestResponse) => {
}" }"
url="Autonomies/location" url="Autonomies/location"
:sort-by="['name ASC']" :sort-by="['name ASC']"
:limit="100" :limit="30"
/> />
<FormModelPopup <FormModelPopup
:title="t('New province')" :title="t('New province')"