Skip to content

Commit

Permalink
DBZ-3967 Fix issue with removal of default properties (debezium#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrillin authored Oct 1, 2021
1 parent 02d6a31 commit e491433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/packages/ui/src/app/shared/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export function minimizePropertyValues (propertyValues: Map<string, string>, pro
if (propDefn.isMandatory) {
minimizedValues.set(key, value);
// Include non-mandatory if has default and value is different
}else if (propDefn.defaultValue) {
}else if (propDefn.defaultValue != null) {
if (propDefn.defaultValue !== value) {
minimizedValues.set(key, value);
}
Expand Down

0 comments on commit e491433

Please sign in to comment.