unset initial rating value
This commit is contained in:
parent
2e7192061c
commit
97b654b4af
|
@ -39,7 +39,7 @@ export class EncuestaCompleteComponent implements OnInit {
|
||||||
selectedSingleOptions: any;
|
selectedSingleOptions: any;
|
||||||
selectedMultiOptions: any;
|
selectedMultiOptions: any;
|
||||||
error: boolean;
|
error: boolean;
|
||||||
rating: Number;
|
rating?: Number;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
protected activatedRoute: ActivatedRoute,
|
protected activatedRoute: ActivatedRoute,
|
||||||
|
@ -56,7 +56,6 @@ export class EncuestaCompleteComponent implements OnInit {
|
||||||
this.selectedSingleOptions = {};
|
this.selectedSingleOptions = {};
|
||||||
this.selectedMultiOptions = [];
|
this.selectedMultiOptions = [];
|
||||||
this.error = false;
|
this.error = false;
|
||||||
this.rating = 5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
|
Loading…
Reference in New Issue