This commit is contained in:
tiago.kayaya
2021-07-13 11:15:50 +01:00
5 changed files with 75 additions and 82 deletions
@@ -266,7 +266,7 @@ export class NewEventPage implements OnInit {
participantes: new FormControl(this.taskParticipants, [
Validators.required
]),
Date: new FormControl(this.dateControlStart.toLocaleString() > this.dateControlEnd.toLocaleString()? 'ok': null,[
Date: new FormControl(this.dateControlStart.toLocaleString() < this.dateControlEnd.toLocaleString() ? 'ok': null,[
Validators.required
]),