Compare commits

..

No commits in common. "editFeature" and "main" have entirely different histories.

View File

@ -1,8 +1,16 @@
<!-- Terminal --> <mat-card class="task">
<div class="terminal" > <mat-card-header class="header">
<pre>{{this.taskObj.name}}</pre> <mat-card-title class="title">{{this.taskObj.name}}</mat-card-title>
<pre>{{this.taskObj.id}}</pre> <mat-card-subtitle class="sub">{{this.date}}</mat-card-subtitle>
<pre>{{this.taskObj.description}}</pre> </mat-card-header>
<pre>{{this.taskObj.state}}</pre> <hr>
<pre>{{this.taskObj.date}}</pre> <mat-card-content class="content">
</div> <p>
{{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>