From 970950e3a8bdb12e7d492fe5c0b1db2279895f9d Mon Sep 17 00:00:00 2001 From: Joel Date: Mon, 29 May 2023 13:52:56 +0800 Subject: [PATCH] feat: support select multi datasets (#235) --- .../dataset-config/select-dataset/index.tsx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/web/app/components/app/configuration/dataset-config/select-dataset/index.tsx b/web/app/components/app/configuration/dataset-config/select-dataset/index.tsx index 78c219bfc5..2ff3ef1649 100644 --- a/web/app/components/app/configuration/dataset-config/select-dataset/index.tsx +++ b/web/app/components/app/configuration/dataset-config/select-dataset/index.tsx @@ -12,7 +12,6 @@ import { formatNumber } from '@/utils/format' import Link from 'next/link' import s from './style.module.css' -import Toast from '@/app/components/base/toast' export interface ISelectDataSetProps { isShow: boolean @@ -32,8 +31,7 @@ const SelectDataSet: FC = ({ const [loaded, setLoaded] = React.useState(false) const [datasets, setDataSets] = React.useState(null) const hasNoData = !datasets || datasets?.length === 0 - // Only one dataset can be selected. Historical data retains data and supports multiple selections, but when saving, only one can be selected. This is based on considerations of performance and accuracy. - const canSelectMulti = selectedIds.length > 1 + const canSelectMulti = true useEffect(() => { (async () => { const { data } = await fetchDatasets({ url: '/datasets', params: { page: 1 } }) @@ -57,13 +55,6 @@ const SelectDataSet: FC = ({ } const handleSelect = () => { - if (selected.length > 1) { - Toast.notify({ - type: 'error', - message: t('appDebug.feature.dataSet.notSupportSelectMulti') - }) - return - } onSelect(selected) } return (