unset initial rating value

This commit is contained in:
Eduardo Quiros 2021-08-11 18:43:50 -06:00
parent 2e7192061c
commit 97b654b4af
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
1 changed files with 1 additions and 2 deletions

View File

@ -39,7 +39,7 @@ export class EncuestaCompleteComponent implements OnInit {
selectedSingleOptions: any;
selectedMultiOptions: any;
error: boolean;
rating: Number;
rating?: Number;
constructor(
protected activatedRoute: ActivatedRoute,
@ -56,7 +56,6 @@ export class EncuestaCompleteComponent implements OnInit {
this.selectedSingleOptions = {};
this.selectedMultiOptions = [];
this.error = false;
this.rating = 5;
}
ngOnInit(): void {