fix step count in vote

This commit is contained in:
Tykayn 2022-02-07 19:06:28 +01:00 committed by tykayn
parent ecea75b351
commit 4ee326445b
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<app-stepper [step_current]="4" [step_max]="pollService.step_max"></app-stepper>
<app-stepper [step_current]="2" [step_max]="2"></app-stepper>
<div class="step">
<div class="user-infos">
<h2 class="title is-2">

View File

@ -25,7 +25,7 @@ export class ConsultationUserComponent implements OnInit {
private storageService: StorageService,
public pollService: PollService
) {
this.pollService.step_current = 4;
this.pollService.step_current = 2;
}
ngOnInit(): void {}