Skip to content

Commit

Permalink
ELEMENTS-1713: Fix nuxeo-directory-radio-group in Edit mode
Browse files Browse the repository at this point in the history
  • Loading branch information
alokhyland committed Mar 6, 2024
1 parent 7ad357c commit 32246b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/widgets/nuxeo-directory-radio-group.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ import { DirectoryWidgetBehavior } from './nuxeo-directory-widget-behavior.js';
if (this.value && this.value.length > 0 && this.value !== this._selected) {
this._selected = this.value;
}
this._entries.forEach((entry) => this._isChecked(entry));
if (this._entries) {
this._entries.forEach((entry) => this._isChecked(entry));
}
}

/* Override method from Polymer.IronValidatableBehavior. */
Expand Down

0 comments on commit 32246b7

Please sign in to comment.