From 2a47001e37f4916d16770d246ecf8240b7d21861 Mon Sep 17 00:00:00 2001 From: rahuljain-dev Date: Thu, 30 Nov 2023 14:54:51 +0530 Subject: [PATCH] ELEMENTS-1683: Fix nuxeo-directory-radio-group missing mutlivalued complex sub property selected --- ui/widgets/nuxeo-directory-radio-group.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/widgets/nuxeo-directory-radio-group.js b/ui/widgets/nuxeo-directory-radio-group.js index 0f0f23309..50e6b6c94 100644 --- a/ui/widgets/nuxeo-directory-radio-group.js +++ b/ui/widgets/nuxeo-directory-radio-group.js @@ -140,6 +140,7 @@ 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)); } /* Override method from Polymer.IronValidatableBehavior. */