@annalib/anna-core 18.4.0 → 18.4.1
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/anna-core-shared-lib/pipes/annaConvertArrayToCommaSeperatedValue.pipe.mjs +2 -2
- package/fesm2015/annalib-anna-core.mjs +1 -1
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +1 -1
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5328,7 +5328,7 @@ class AnnaConvertArrayToCommaSeperatedValue {
|
|
|
5328
5328
|
this.converter = memoize(this.replace, (...args) => this.replace(args[0], args[1], args[2]));
|
|
5329
5329
|
}
|
|
5330
5330
|
transform(value, textKeyName, selectedKeyName) {
|
|
5331
|
-
if (value
|
|
5331
|
+
if (value == undefined || value == null) {
|
|
5332
5332
|
return '-';
|
|
5333
5333
|
}
|
|
5334
5334
|
return this.converter(value, textKeyName, selectedKeyName);
|