From 82cc153c9843ba50152e70301367224f38c2c7e0 Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 5 Feb 2025 12:00:19 +0100 Subject: [PATCH] fix: empty order --- src/composables/useArrayData.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/composables/useArrayData.js b/src/composables/useArrayData.js index 06acb12f6..959a366d0 100644 --- a/src/composables/useArrayData.js +++ b/src/composables/useArrayData.js @@ -94,8 +94,6 @@ export function useArrayData(key, userOptions) { if (params.filter.where || exprFilter) params.filter.where = { ...params.filter.where, ...exprFilter }; - if (!params?.filter?.order?.length) delete params.filter.order; - params.filter = JSON.stringify(params.filter); store.isLoading = true;