diff --git a/wherehows-web/app/components/dataset-compliance-rollup-row.ts b/wherehows-web/app/components/dataset-compliance-rollup-row.ts index db905f8bb4..40cf159928 100644 --- a/wherehows-web/app/components/dataset-compliance-rollup-row.ts +++ b/wherehows-web/app/components/dataset-compliance-rollup-row.ts @@ -352,7 +352,10 @@ export default class DatasetComplianceRollupRow extends Component.extend({ value: identifierType }); } 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 }); + } } } }