Removed collum "Inhalt" from Task Table

This commit is contained in:
Nicolai Ort 2020-06-29 14:29:57 +02:00
parent a81a26d989
commit 9bcf7b70d0
2 changed files with 0 additions and 12 deletions

View File

@ -33,13 +33,6 @@
<span *ngIf="sortDescending === false"></span>
</span>
</th>
<th (click)="sortByContent()" class="sortable">
<span>Inhalt</span>
<span *ngIf="sortBy === 'content'" class="pl-3">
<span *ngIf="sortDescending"></span>
<span *ngIf="sortDescending === false"></span>
</span>
</th>
<th (click)="sortByTasks()" class="sortable">
<span>Userstory</span>
<span *ngIf="sortBy === 'userstory'" class="pl-3">
@ -68,7 +61,6 @@
<tr *ngFor="let task of filteredItems" [class.table-info]="task.id === highlightId">
<td>{{task.id}}</td>
<td>{{task.title}}</td>
<td>{{task.content}}</td>
<td>
<a [routerLink]="['/userstories', {id: task.userstoryid}]">
US #{{task.userstoryid}}

View File

@ -85,10 +85,6 @@ export class TaskTableComponent extends TableComponentBase<ScrumTask> {
this.doStringSort('title', task => task.title);
}
sortByContent() {
this.doStringSort('content', task => task.content);
}
sortByPrio() {
this.doNumericSort('priority', task => getNumberForPriority(task.priority));
}