@impartner/design-components 4.0.1 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7269,7 +7269,7 @@ class RadioGroupComponent extends _RadioGroupComponentBase {
|
|
|
7269
7269
|
}
|
|
7270
7270
|
set value(value) {
|
|
7271
7271
|
this._suppressEmitValueChange = true;
|
|
7272
|
-
this._valueInternal.set(value ? [value] : []);
|
|
7272
|
+
this._valueInternal.set(value != undefined && value != null ? [value] : []);
|
|
7273
7273
|
this.stateChanges.next();
|
|
7274
7274
|
}
|
|
7275
7275
|
get id() {
|