diff --git a/frontend/crawlab-ui/src/components/ui/select/RemoteSelect.vue b/frontend/crawlab-ui/src/components/ui/select/RemoteSelect.vue index 3c05fc8d..bd72c667 100644 --- a/frontend/crawlab-ui/src/components/ui/select/RemoteSelect.vue +++ b/frontend/crawlab-ui/src/components/ui/select/RemoteSelect.vue @@ -66,7 +66,7 @@ const remoteMethod = async (query?: string) => { ]); } const sort = labelKey; - const res = await get(endpoint, { filter, limit, sort }); + const res = await get(endpoint, { filter, size: limit, sort }); list.value = res.data || []; } catch (e) { console.error(e);