This commit is contained in:
Georg Reisinger 2022-05-01 23:10:17 +02:00
parent fd2a2fa1e4
commit b8a6e365d1

View File

@ -1,16 +1,8 @@
<mat-card class="task"> <!-- Terminal -->
<mat-card-header class="header"> <div class="terminal" >
<mat-card-title class="title">{{this.taskObj.name}}</mat-card-title> <pre>{{this.taskObj.name}}</pre>
<mat-card-subtitle class="sub">{{this.date}}</mat-card-subtitle> <pre>{{this.taskObj.id}}</pre>
</mat-card-header> <pre>{{this.taskObj.description}}</pre>
<hr> <pre>{{this.taskObj.state}}</pre>
<mat-card-content class="content"> <pre>{{this.taskObj.date}}</pre>
<p> </div>
{{this.taskObj.description}}
</p>
</mat-card-content>
<mat-card-actions>
<button (click)="delete(this.taskObj.id)" mat-mini-fab class="edit-btn"><mat-icon>delete</mat-icon></button>
<button (click)="openDialog()" mat-mini-fab class="edit-btn"><mat-icon>edit</mat-icon></button>
</mat-card-actions>
</mat-card>