Skip to content
This repository has been archived by the owner on Sep 15, 2023. It is now read-only.

Commit

Permalink
MIN_DATE adjusted for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
Armin-Isenring-Bit committed Mar 16, 2023
1 parent b618f76 commit e34a2cc
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, OnDestroy, OnInit, ViewChild} from '@angular/core';
import {Component, Input, OnDestroy, OnInit, ViewChild} from '@angular/core';
import {ReportService} from '../../report.service';
import {NgForm, UntypedFormControl, UntypedFormGroup} from '@angular/forms';
import {Subscription} from 'rxjs';
Expand All @@ -17,7 +17,11 @@ export class ReportA13Component implements OnInit, OnDestroy {
dateFromFormControl: UntypedFormControl;
dateToFormControl: UntypedFormControl;
cantonFormControl: UntypedFormControl;
readonly MIN_DATE = moment('2021-08-07');
// temporary value for testing purposes
readonly MIN_DATE = moment('2021-01-01');
// original value
// readonly MIN_DATE = moment('2021-08-07');


subscription: Subscription;

Expand Down

0 comments on commit e34a2cc

Please sign in to comment.