@recursyve/nice-ui-kit.v2 14.0.0-beta.115 → 14.0.0-beta.116
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/esm2020/lib/directives/chip-list/chip-list.directive.mjs +2 -2
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs +1 -1
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs +1 -1
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -10364,7 +10364,7 @@ class NiceChipListDirective {
|
|
|
10364
10364
|
}
|
|
10365
10365
|
writeValue(obj) {
|
|
10366
10366
|
if (obj && Array.isArray(obj)) {
|
|
10367
|
-
this._values = obj;
|
|
10367
|
+
this._values = [...obj];
|
|
10368
10368
|
}
|
|
10369
10369
|
else {
|
|
10370
10370
|
this._values = [];
|