Removed collum "Inhalt" from Userstory Table

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

View File

@ -22,13 +22,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>Tasks</span>
<span *ngIf="sortBy === 'tasks'" class="pl-3">
@ -57,7 +50,6 @@
<tr *ngFor="let userstory of filteredItems" [class.table-info]="userstory.id === highlightId">
<td>{{userstory.id}}</td>
<td>{{userstory.title}}</td>
<td>{{userstory.content}}</td>
<td>
<a [routerLink]="['/tasks', {userstoryId: userstory.id}]">
{{getNumberOfTasks(userstory)}} Tasks

View File

@ -88,10 +88,6 @@ export class UserstoryTableComponent extends TableComponentBase<ScrumUserstory>
this.doStringSort('title', us => us.title);
}
public sortByContent() {
this.doStringSort('content', us => us.content);
}
public sortByPrio() {
this.doNumericSort('priority', us => getNumberForPriority(us.priority));
}