Commit e3475b52 authored by 彭俊龙's avatar 彭俊龙

feat: 修复流程中心规则配置未读取到事件表字段问题

parent 2e5cde10
Pipeline #95835 failed with stages
......@@ -42,7 +42,7 @@ const ConfigCopyPerson = (props, ref) => {
allFieldList.current = [];
res.data.forEach(item => {
if (!allFieldList.current.some(ele => ele.TableName === item.TableName)) {
let data = item.TableFieldNames.filter(i => i !== '关联表单');
let data = item.TableFieldNames?.filter(i => i !== '关联表单');
allFieldList.current.push({
TableFieldNames: data,
TableName: item.TableName,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment