perf: 优化迁移文档过滤知识库选项

This commit is contained in:
wangdan-fit2cloud 2024-05-07 16:30:10 +08:00
parent 7a08f036e9
commit 1e67f39ce1

View File

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