mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-31 18:48:35 +00:00
Fix duplicate tags in ChangeDescription by passing empty lists to recordListChange (#23841)
This commit is contained in:
parent
650627a025
commit
86b6de3346
@ -4064,7 +4064,8 @@ public abstract class EntityRepository<T extends EntityInterface> {
|
||||
}
|
||||
|
||||
// Record changes for audit trail
|
||||
recordListChange(fieldName, origTags, updatedTags, addedTags, deletedTags, tagLabelMatch);
|
||||
recordListChange(
|
||||
fieldName, origTags, updatedTags, new ArrayList<>(), new ArrayList<>(), tagLabelMatch);
|
||||
updatedTags.sort(compareTagLabel);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user