@annalib/anna-core 4.3.8 → 4.3.9

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.
@@ -2391,8 +2391,10 @@ class AnnaNonEditableGenericTableComponent {
2391
2391
  this.disableSliderApplyButton = false;
2392
2392
  this.incorrectSliderInput = false;
2393
2393
  }
2394
+ console.log(this.sliderEnteredMinValue);
2394
2395
  }
2395
2396
  else {
2397
+ console.log('inside else condition');
2396
2398
  this.sliderEnteredMinValue = this.options.floor;
2397
2399
  this.isMinTextBoxEmpty = true;
2398
2400
  this.showSliderMinValueError = false;
@@ -2449,6 +2451,7 @@ class AnnaNonEditableGenericTableComponent {
2449
2451
  this.sliderEnteredMaxValue = this.options.ceil;
2450
2452
  this.isMaxTextBoxEmpty = true;
2451
2453
  this.showSliderMaxValueError = false;
2454
+ console.log(this.sliderEnteredMaxValue);
2452
2455
  }
2453
2456
  this.showErrorForMinAndMaxValue();
2454
2457
  }
@@ -3249,6 +3252,7 @@ class AnnaNonEditableGenericTableComponent {
3249
3252
  checkIfSortingChanged() {
3250
3253
  this.isSortChanged = this.tempSortOrder != null && this.tempSortOrder != this.annaSortService.columnSortState.get(this.annaFilterService.selectedRadio);
3251
3254
  ;
3255
+ console.log(this.isSortChanged);
3252
3256
  return this.isSortChanged;
3253
3257
  }
3254
3258
  disableApplyButtonOfSelectedFilter() {