@annalib/anna-core 12.0.10 → 12.0.12

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.
@@ -1888,7 +1888,7 @@ class AnnaNonEditableGenericTableComponent {
1888
1888
  this.tooltipRadioTextMap.set("agencyName", "Agency");
1889
1889
  this.tooltipRadioTextMap.set("location", "Location");
1890
1890
  this.tooltipRadioTextMap.set("advertiserName", "Advertiser");
1891
- this.tooltipRadioTextMap.set("productCode", "Product Category");
1891
+ this.tooltipRadioTextMap.set("productCode", "Product Code");
1892
1892
  this.tooltipRadioTextMap.set("flightStartDate", "Start Date");
1893
1893
  this.tooltipRadioTextMap.set("flightEndDate", "End Date");
1894
1894
  this.tooltipRadioTextMap.set("orderIdAndRevNumber", "STN Order#-Rev#");
@@ -1936,7 +1936,7 @@ class AnnaNonEditableGenericTableComponent {
1936
1936
  this.tooltipRadioTextMap.set("audienceDeficit", "$ O/S Audience");
1937
1937
  this.tooltipRadioTextMap.set("postedAudPercent", "Posted Audience %");
1938
1938
  this.tooltipRadioTextMap.set("potentialUnitsValue", "POT Units");
1939
- this.tooltipRadioTextMap.set("bookedUnitsValue", "Booked Eq Units");
1939
+ this.tooltipRadioTextMap.set("bookedUnitsValue", "Booked Units");
1940
1940
  this.tooltipRadioTextMap.set("bookedAmountWithZeroRatingValue", "Total $ Booked");
1941
1941
  this.tooltipRadioTextMap.set("bookedAmountPercentageWithZeroRatingValue", "% Against All Demos");
1942
1942
  this.tooltipRadioTextMap.set("bookedAmountWithoutZeroRatingValue", "$Booked With Imps(’000)");
@@ -2307,8 +2307,8 @@ class AnnaNonEditableGenericTableComponent {
2307
2307
  }
2308
2308
  getCheckboxData(header) {
2309
2309
  let tooltipOptions = this.createListForCheckboxFilter(header);
2310
- let selectedItems = sortBy(tooltipOptions.filter(item => item.isSelected), "label");
2311
- let unselectedItems = sortBy(tooltipOptions.filter(item => !item.isSelected), "label");
2310
+ let selectedItems = sortBy(tooltipOptions.filter(item => item.isSelected), "value");
2311
+ let unselectedItems = sortBy(tooltipOptions.filter(item => !item.isSelected), "value");
2312
2312
  this.clonedTooltipOptions = [...selectedItems, ...unselectedItems];
2313
2313
  this.tooltipOptions = cloneDeep(this.clonedTooltipOptions);
2314
2314
  let margin = 5;