@annalib/anna-core 8.0.50 → 8.0.51

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.
@@ -1975,12 +1975,8 @@ class AnnaNonEditableGenericTableComponent {
1975
1975
  this.tooltipRadioTextMap.set("PostedRatingsOrImpressions", "Posted RTG");
1976
1976
  this.tooltipRadioTextMap.set("ScheduleFlightWeek", "Schedule Week");
1977
1977
  this.tooltipRadioTextMap.set("ScheduledDay", "Scheduled Day");
1978
- this.tooltipRadioTextMap.set("AirStatus", "Air Status");
1979
- this.tooltipRadioTextMap.set("AirDateAndTime", "Air Date & Time");
1980
- this.tooltipRadioTextMap.set("NormalizedOrderedRating", "Normalized Booked RTG");
1981
- this.tooltipRadioTextMap.set("NormalizedOrderedImpressions", "Normalized Booked RTG");
1982
- this.tooltipRadioTextMap.set("NormalizedPostedRating", "Normalized Posted IMPS('000)");
1983
- this.tooltipRadioTextMap.set("NormalizedPostedImpressions", "Normalized Posted IMPS('000)");
1978
+ this.tooltipRadioTextMap.set("AirStatus", "Aired Status");
1979
+ this.tooltipRadioTextMap.set("AirDateAndTime", "Aired Date & Time");
1984
1980
  this.tooltipRadioTextMap.set("AdId", "Ad-Id");
1985
1981
  }
1986
1982
  generateTableDataWrapper() {
@@ -3175,8 +3171,8 @@ class AnnaNonEditableGenericTableComponent {
3175
3171
  -1;
3176
3172
  let includeZero = this.clonedTableData.findIndex((obj) => obj[key][0] == "0") != -1;
3177
3173
  let includeTimeRange = this.clonedTableData.findIndex((obj) => obj[key][0] != "0" && obj[key][0] != "<multi>") != -1;
3178
- let startTimeArr = map(this.clonedTableData, "startTime");
3179
- let endTimeArr = map(this.clonedTableData, "endTime");
3174
+ let startTimeArr = map(this.clonedTableData, "startTime").filter(n => n != "");
3175
+ let endTimeArr = map(this.clonedTableData, "endTime").filter(n => n != "");
3180
3176
  startTimeArr.sort((a, b) => {
3181
3177
  return this.annaDateTimeFormatService.sortByTimeAscending(a, b);
3182
3178
  });