Browse Source

fix: add ids in FetchDatasetsParams (#13459)

tags/1.0.0
Wu Tianwei 8 months ago
parent
commit
33990426c1
No account linked to committer's email address
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      web/models/datasets.ts

+ 3
- 2
web/models/datasets.ts View File

@@ -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
}
}

Loading…
Cancel
Save