@annalib/anna-core 12.3.0 → 12.3.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.
@@ -1950,7 +1950,7 @@ class AnnaNonEditableGenericTableComponent {
1950
1950
  this.tooltipRadioTextMap.set("audienceDeficit", "$ O/S Audience");
1951
1951
  this.tooltipRadioTextMap.set("postedAudPercent", "Posted Audience %");
1952
1952
  this.tooltipRadioTextMap.set("potentialUnitsValue", "POT Units");
1953
- this.tooltipRadioTextMap.set("bookedUnitsValue", "Booked Units");
1953
+ this.tooltipRadioTextMap.set("bookedUnitsValue", "Booked Eq Units");
1954
1954
  this.tooltipRadioTextMap.set("bookedAmountWithZeroRatingValue", "Total $ Booked");
1955
1955
  this.tooltipRadioTextMap.set("bookedAmountPercentageWithZeroRatingValue", "% Against All Demos");
1956
1956
  this.tooltipRadioTextMap.set("bookedAmountWithoutZeroRatingValue", "$Booked With Imps(’000)");
@@ -2321,8 +2321,8 @@ class AnnaNonEditableGenericTableComponent {
2321
2321
  }
2322
2322
  getCheckboxData(header) {
2323
2323
  let tooltipOptions = this.createListForCheckboxFilter(header);
2324
- let selectedItems = sortBy(tooltipOptions.filter(item => item.isSelected), "label");
2325
- let unselectedItems = sortBy(tooltipOptions.filter(item => !item.isSelected), "label");
2324
+ let selectedItems = sortBy(tooltipOptions.filter(item => item.isSelected), "value");
2325
+ let unselectedItems = sortBy(tooltipOptions.filter(item => !item.isSelected), "value");
2326
2326
  this.clonedTooltipOptions = [...selectedItems, ...unselectedItems];
2327
2327
  this.tooltipOptions = cloneDeep(this.clonedTooltipOptions);
2328
2328
  let margin = 5;