@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.
@@ -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 !== undefined || value != null) {
5331
+ if (value == undefined || value == null) {
5332
5332
  return '-';
5333
5333
  }
5334
5334
  return this.converter(value, textKeyName, selectedKeyName);