monkey-front-core 0.0.249 → 0.0.251

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.
@@ -4760,21 +4760,15 @@ class MonkeyEcxFeatureDirective {
4760
4760
  return;
4761
4761
  const flag = this.getFeature(this.feature);
4762
4762
  let display = 'none';
4763
- console.log('1');
4764
4763
  if (!MonkeyEcxUtils.persistNullEmptyUndefined(flag)) {
4765
4764
  return;
4766
4765
  }
4767
- console.log('2');
4768
4766
  if (flag) {
4769
4767
  display = 'block';
4770
4768
  }
4771
- console.log('3');
4772
4769
  if (display === 'none') {
4773
4770
  this.elementRef.nativeElement.remove();
4774
4771
  }
4775
- console.log('4');
4776
- console.log('display');
4777
- console.log(display);
4778
4772
  this.elementRef.nativeElement.style.display = display;
4779
4773
  this.cdr.detectChanges();
4780
4774
  }