Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/components/_classes/nested/NestedComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,9 @@ export default class NestedComponent extends Field {
}

setValue(value, flags = {}) {
if (!value) {
return false;
}
// If the value is equal to the empty value, then this means we need to reset the values.
if (_.isEqual(value, this.emptyValue)) {
// TO-DO: For a future major release, we need to investigate removing the need for the
Expand Down