ps-toolkit-ui 1.4.89 → 1.4.90
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.
- package/bundles/ps-toolkit-ui.umd.js +1 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/form/radio/form.radio.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +1 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -4949,7 +4949,7 @@
|
|
|
4949
4949
|
var _this = this;
|
|
4950
4950
|
this.inp.load();
|
|
4951
4951
|
this.inp.setValue = function (v) {
|
|
4952
|
-
_this.inp.value = v.toString();
|
|
4952
|
+
_this.inp.value = v !== null ? v.toString() : null;
|
|
4953
4953
|
if (_this.inp.value == null && _this.inp.options.length > 0) {
|
|
4954
4954
|
_this.inp.value = _this.inp.options.find(function (x) { return true; }).value;
|
|
4955
4955
|
}
|