Compare commits

..

2 Commits
main ... noEdit

Author SHA1 Message Date
Administrator
a1e91df680 Update .gitlab-ci.yml file 2022-05-06 23:57:11 +00:00
b8a6e365d1 No Edit 2022-05-01 23:10:17 +02:00

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>