mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-31 21:03:03 +00:00
Merge pull request #1129 from theseyi/disregard-none-suggested-for-multi-tag
disregards suggested value of ComplianceFieldIdValue.None if the fiel…
This commit is contained in:
commit
720c2f5280
@ -352,7 +352,10 @@ export default class DatasetComplianceRollupRow extends Component.extend({
|
|||||||
value: <ComplianceFieldIdValue>identifierType
|
value: <ComplianceFieldIdValue>identifierType
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this.actions.onAddFieldTag.call(this, { identifierType, logicalType });
|
// If suggested value is ComplianceFieldIdValue.None then do not add
|
||||||
|
if (identifierType !== ComplianceFieldIdValue.None) {
|
||||||
|
this.actions.onAddFieldTag.call(this, { identifierType, logicalType });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user