From 38c3a7534ab794d72e12335b60ad0ef6a4e47f68 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Wed, 18 Jun 2025 22:33:04 +0800 Subject: [PATCH] fix: unable to select all options in some dropdown --- frontend/crawlab-ui/src/components/ui/select/RemoteSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);