Commit 414a41ec by zhaochengxiang

bug fix

parent cb9047b7
......@@ -199,11 +199,11 @@ const ImportActionProcess = (props) => {
const onRemoveClick = (record) => {
if (record.name === '') {
if (record.sequenceNumber === '') {
const newData = [...dataRef.current];
onChange && onChange(newData);
} else {
if (record.name !== editingKey) {
if (record.sequenceNumber !== editingKey) {
save().then(result => {
if (result) {
removeLogic(record);
......
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