@annalib/anna-core 9.0.2 → 9.0.4

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.
@@ -1013,7 +1013,7 @@ var SortTypeEnum;
1013
1013
 
1014
1014
  class TooltipModel {
1015
1015
  constructor(obj, id) {
1016
- this.label = obj ? obj.toString() : null;
1016
+ this.label = obj != null ? obj.toString() : null;
1017
1017
  this.value = obj;
1018
1018
  this.isSelected = false;
1019
1019
  this.id = id;