Skip to content

Commit

Permalink
perf: 优化迁移文档过滤知识库选项
Browse files Browse the repository at this point in the history
  • Loading branch information
wangdan-fit2cloud committed May 7, 2024
1 parent 7a08f03 commit 1e67f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/views/document/component/SelectDatasetDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const submitHandle = () => {
function getDataset() {
dataset.asyncGetAllDataset(loading).then((res: any) => {
datasetList.value = res.data
datasetList.value = res.data?.filter((v: any) => v.id !== id)
})
}
Expand Down

0 comments on commit 1e67f39

Please sign in to comment.