@annalib/anna-core 18.0.9 → 18.0.10
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-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +1 -3
- package/fesm2015/annalib-anna-core.mjs +0 -2
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +0 -2
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2636,7 +2636,6 @@ class AnnaColumnTimeFilterComponent {
|
|
|
2636
2636
|
}
|
|
2637
2637
|
getTimeFilterData(header) {
|
|
2638
2638
|
this.startTimeHourErr = this.startTimeMinErr = this.endTimeHourErr = this.endTimeMinErr = false;
|
|
2639
|
-
console.log("first ", this.clonedTableData);
|
|
2640
2639
|
if (this.isSortAndFilterPresent) {
|
|
2641
2640
|
this.selectedFromTime = this.clonedTableData[0].time;
|
|
2642
2641
|
this.selectedToTime = this.clonedTableData[1].time;
|
|
@@ -2646,7 +2645,6 @@ class AnnaColumnTimeFilterComponent {
|
|
|
2646
2645
|
else {
|
|
2647
2646
|
[this.selectedFromTime, this.selectedToTime] = this.annaFilterService.getSelectedTimeRange(header, this.clonedTableData);
|
|
2648
2647
|
}
|
|
2649
|
-
console.log("After:", this.selectedFromTime, this.selectedToTime);
|
|
2650
2648
|
this.clonedSelectedFromTime = cloneDeep(this.selectedFromTime);
|
|
2651
2649
|
this.clonedSelectedToTime = cloneDeep(this.selectedToTime);
|
|
2652
2650
|
let optionsData = this.annaFilterService.getFilterOptionsData(this.tableData, this.clonedTableData);
|