Skip to content

Commit

Permalink
Merge pull request 1Panel-dev#380 from 1Panel-dev/pr@main@perf-migrate
Browse files Browse the repository at this point in the history
perf: 优化迁移文档过滤知识库选项
  • Loading branch information
wangdan-fit2cloud committed May 7, 2024
2 parents 7a08f03 + 1e67f39 commit 48496bc
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 48496bc

Please sign in to comment.