chore: 去掉调试log

This commit is contained in:
roymondchen 2023-11-23 14:49:52 +08:00
parent c9aab11e03
commit 4bbde1a5f6
2 changed files with 0 additions and 2 deletions

View File

@ -43,7 +43,6 @@ export const createDataSourceTarget = (ds: DataSourceSchema, initialDeps: DepDat
(value?.isBindDataSource && value.dataSourceId && value.dataSourceId === ds.id) || (value?.isBindDataSource && value.dataSourceId && value.dataSourceId === ds.id) ||
(typeof value === 'string' && value.includes(`${ds.id}`) && /\$\{([\s\S]+?)\}/.test(value)) (typeof value === 'string' && value.includes(`${ds.id}`) && /\$\{([\s\S]+?)\}/.test(value))
) { ) {
console.log('value', value, ds.id);
return true; return true;
} }

View File

@ -270,7 +270,6 @@ const getFieldsConfig = (value: any) => {
}; };
const addFromJsonFromChange = ({ data }: { data: string }) => { const addFromJsonFromChange = ({ data }: { data: string }) => {
console.log(data);
try { try {
const value = JSON.parse(data); const value = JSON.parse(data);