@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.
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +5 -9
- package/fesm2015/annalib-anna-core.mjs +4 -8
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +4 -8
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/style.scss +1 -1
- package/src/lib/anna-common-scss/_customDropdown.scss +0 -129
|
@@ -1973,12 +1973,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
1973
1973
|
this.tooltipRadioTextMap.set("PostedRatingsOrImpressions", "Posted RTG");
|
|
1974
1974
|
this.tooltipRadioTextMap.set("ScheduleFlightWeek", "Schedule Week");
|
|
1975
1975
|
this.tooltipRadioTextMap.set("ScheduledDay", "Scheduled Day");
|
|
1976
|
-
this.tooltipRadioTextMap.set("AirStatus", "
|
|
1977
|
-
this.tooltipRadioTextMap.set("AirDateAndTime", "
|
|
1978
|
-
this.tooltipRadioTextMap.set("NormalizedOrderedRating", "Normalized Booked RTG");
|
|
1979
|
-
this.tooltipRadioTextMap.set("NormalizedOrderedImpressions", "Normalized Booked RTG");
|
|
1980
|
-
this.tooltipRadioTextMap.set("NormalizedPostedRating", "Normalized Posted IMPS('000)");
|
|
1981
|
-
this.tooltipRadioTextMap.set("NormalizedPostedImpressions", "Normalized Posted IMPS('000)");
|
|
1976
|
+
this.tooltipRadioTextMap.set("AirStatus", "Aired Status");
|
|
1977
|
+
this.tooltipRadioTextMap.set("AirDateAndTime", "Aired Date & Time");
|
|
1982
1978
|
this.tooltipRadioTextMap.set("AdId", "Ad-Id");
|
|
1983
1979
|
}
|
|
1984
1980
|
generateTableDataWrapper() {
|
|
@@ -3173,8 +3169,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3173
3169
|
-1;
|
|
3174
3170
|
let includeZero = this.clonedTableData.findIndex((obj) => obj[key][0] == "0") != -1;
|
|
3175
3171
|
let includeTimeRange = this.clonedTableData.findIndex((obj) => obj[key][0] != "0" && obj[key][0] != "<multi>") != -1;
|
|
3176
|
-
let startTimeArr = map(this.clonedTableData, "startTime");
|
|
3177
|
-
let endTimeArr = map(this.clonedTableData, "endTime");
|
|
3172
|
+
let startTimeArr = map(this.clonedTableData, "startTime").filter(n => n != "");
|
|
3173
|
+
let endTimeArr = map(this.clonedTableData, "endTime").filter(n => n != "");
|
|
3178
3174
|
startTimeArr.sort((a, b) => {
|
|
3179
3175
|
return this.annaDateTimeFormatService.sortByTimeAscending(a, b);
|
|
3180
3176
|
});
|