@annalib/anna-core 10.0.22 → 10.0.24
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-core-shared-lib/models/anna-non-editable-gt-models.mjs +1 -1
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +5 -3
- package/fesm2015/annalib-anna-core.mjs +4 -2
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +4 -2
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2368,7 +2368,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
2368
2368
|
this.selectedFromTime = ["-", "-", "-"];
|
|
2369
2369
|
this.selectedToTime = ["-", "-", "-"];
|
|
2370
2370
|
}
|
|
2371
|
-
if (this.gtGeneralConfig.component === "SPOTDETAILS" || this.gtGeneralConfig.component === "EXCLUDEINVENTORYPOPUP"
|
|
2371
|
+
if (this.gtGeneralConfig.component === "SPOTDETAILS" || this.gtGeneralConfig.component === "EXCLUDEINVENTORYPOPUP"
|
|
2372
|
+
|| this.gtGeneralConfig.component === "ACTIVITYLOG" || this.gtGeneralConfig.component === "NOTIFICATIONS") {
|
|
2372
2373
|
this.setTimeFilterDataForComponentsOtherThanRatingsPage(header);
|
|
2373
2374
|
}
|
|
2374
2375
|
else if (this.gtGeneralConfig.component === "RATING") {
|
|
@@ -3172,7 +3173,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3172
3173
|
};
|
|
3173
3174
|
if (this.gtGeneralConfig.component === "SPOTDETAILS" ||
|
|
3174
3175
|
this.gtGeneralConfig.component === "EXCLUDEINVENTORYPOPUP" ||
|
|
3175
|
-
this.gtGeneralConfig.component === "ACTIVITYLOG"
|
|
3176
|
+
this.gtGeneralConfig.component === "ACTIVITYLOG" ||
|
|
3177
|
+
this.gtGeneralConfig.component === "NOTIFICATIONS") {
|
|
3176
3178
|
let includeMulti = this.clonedTableData.findIndex((obj) => obj[key] == "<multi>") !=
|
|
3177
3179
|
-1;
|
|
3178
3180
|
let includeZero = this.clonedTableData.findIndex((obj) => obj[key] == "0") != -1;
|