diff --git a/src/app/participant-text-content/participant-text-content.component.html b/src/app/participant-text-content/participant-text-content.component.html index 3bc09c4017b6af5b081b43fd92a4a7b0cead1a72..6d3f5a502be39d56e8cbd89c1ed63c2beb776e9c 100644 --- a/src/app/participant-text-content/participant-text-content.component.html +++ b/src/app/participant-text-content/participant-text-content.component.html @@ -1,4 +1,4 @@ -<form (ngSubmit)="submit(answer.value)"> +<form (ngSubmit)="submitAnswer(answer.value)"> <h1 class="mat-headline">{{ content.subject }}</h1> <p>{{ content.body }}</p> <mat-divider></mat-divider> diff --git a/src/app/participant-text-content/participant-text-content.component.ts b/src/app/participant-text-content/participant-text-content.component.ts index 96fa89e45eb7f484bb96b4bab5845693fab181a5..7f1837eaa4dd27920d8af933ee52e5f860e1de87 100644 --- a/src/app/participant-text-content/participant-text-content.component.ts +++ b/src/app/participant-text-content/participant-text-content.component.ts @@ -22,7 +22,7 @@ export class ParticipantTextContentComponent implements OnInit { ngOnInit() { } - submit(answer: string) { + submitAnswer(answer: string) { this.answerService.addAnswerText({ id: '0', revision: this.content.revision,