ngx-wapp-components 3.2.32-alpha.8 → 3.2.32

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.
@@ -4587,7 +4587,6 @@ class WPeriodSelectFieldComponent {
4587
4587
  onPeriodCategorySelected() {
4588
4588
  const now = new Date();
4589
4589
  const last24 = new Date(now.getTime() - 24 * 60 * 60 * 1000);
4590
- //const last3Months = new Date(now.setMonth(new Date().getMonth() - 3));
4591
4590
  const last3Months = new Date(now);
4592
4591
  last3Months.setMonth(last3Months.getMonth() - 3);
4593
4592
  if (this.periodCategorySelected === PeriodSelectEnum.Last24Hours) {