Fixed issue with avvikelsereport not showing questions

This commit is contained in:
Erik Tiekstra
2021-10-22 14:45:19 +02:00
parent cfde226f3d
commit 13784eb88d

View File

@@ -110,6 +110,10 @@ export class AvvikelseReportFormComponent implements OnInit, OnDestroy {
this.subscriptions.push( this.subscriptions.push(
this.chosenReason$.subscribe(() => { this.chosenReason$.subscribe(() => {
this.shouldValidate$.next(false); this.shouldValidate$.next(false);
}),
this.questionsForChosenReason$.subscribe(questions => {
this.clearQuestions();
questions.forEach(question => this.addQuestionToForm(question));
}) })
); );