Commit 7f319538 by zhaochengxiang

重点关注编辑的时候取消标红

parent c21fb45f
......@@ -1145,11 +1145,11 @@ const ImportActionTable = (props) => {
},
}}
rowClassName={(record, index) => {
if (type==='model' && record?.modelingTemplateTag && record?.modelingTemplateTag!=={}) {
if (type==='model' && record?.modelingTemplateTag && record?.modelingTemplateTag!=={} && !isEditing(record)) {
return 'editable-row template-highlight-row';
}
if (type==='model' && record?.needAttention) {
if (type==='model' && record?.needAttention && !isEditing(record)) {
return 'editable-row attention-row';
}
......
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