Skip to content
Snippets Groups Projects
Commit 9fa06b8e authored by Lorenz Detterbeck's avatar Lorenz Detterbeck
Browse files

Add ngif statement to HTML

parent b4f1a39d
Branches
Tags
No related merge requests found
<mat-list>
<h3 mat-subheader>Answers</h3>
<mat-list-item *ngFor="let textAnswer of textAnswers">
<button mat-button routerLink="{{textAnswer.id}}">
<button mat-button routerLink="{{textAnswer.id}}"
*ngIf="textAnswer.subject ==='Textaufgabe 2'">
{{textAnswer.body}}
</button>
</mat-list-item>
</mat-list>
\ No newline at end of file
</mat-list>
import { Component, OnInit } from '@angular/core';
import { ContentAnswerService } from '../content-answer.service';
import { AnswerText } from '../answer-text';
import { ContentDetailComponent } from '../content-detail/content-detail.component';
import { Content } from '../content';
@Component({
selector: 'app-content-answers-list',
......@@ -9,11 +11,14 @@ import { AnswerText } from '../answer-text';
})
export class ContentAnswersListComponent implements OnInit {
textAnswers: AnswerText[];
content: Content[];
constructor(private contentAnswerService: ContentAnswerService) { }
constructor(private contentAnswerService: ContentAnswerService,
private contentDetailComponent: ContentDetailComponent) { }
ngOnInit() {
this.getAnswerTexts();
// this.contentDetailComponent.getContent(???);
}
getAnswerTexts(): void {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment