add initial rating numbers

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

View File

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