From 33990426c139730045295c6a0bd9a15844031f15 Mon Sep 17 00:00:00 2001 From: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Date: Mon, 10 Feb 2025 12:28:36 +0800 Subject: [PATCH] fix: add ids in FetchDatasetsParams (#13459) --- web/models/datasets.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/models/datasets.ts b/web/models/datasets.ts index 170fe1911f..0a5a7eccfe 100644 --- a/web/models/datasets.ts +++ b/web/models/datasets.ts @@ -140,9 +140,10 @@ export type FetchDatasetsParams = { url: string params: { page: number + ids?: string[] tag_ids?: string[] - limit: number - include_all: boolean + limit?: number + include_all?: boolean keyword?: string } }