Merge pull request #380 from 1Panel-dev/pr@main@perf-migrate

perf: 优化迁移文档过滤知识库选项
This commit is contained in:
wangdan-fit2cloud 2024-05-07 16:34:43 +08:00 committed by GitHub
commit 48496bcb15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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