Removed collum "Inhalt" from Task Table
This commit is contained in:
parent
a81a26d989
commit
9bcf7b70d0
@ -33,13 +33,6 @@
|
|||||||
<span *ngIf="sortDescending === false">▼</span>
|
<span *ngIf="sortDescending === false">▼</span>
|
||||||
</span>
|
</span>
|
||||||
</th>
|
</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">
|
<th (click)="sortByTasks()" class="sortable">
|
||||||
<span>Userstory</span>
|
<span>Userstory</span>
|
||||||
<span *ngIf="sortBy === 'userstory'" class="pl-3">
|
<span *ngIf="sortBy === 'userstory'" class="pl-3">
|
||||||
@ -68,7 +61,6 @@
|
|||||||
<tr *ngFor="let task of filteredItems" [class.table-info]="task.id === highlightId">
|
<tr *ngFor="let task of filteredItems" [class.table-info]="task.id === highlightId">
|
||||||
<td>{{task.id}}</td>
|
<td>{{task.id}}</td>
|
||||||
<td>{{task.title}}</td>
|
<td>{{task.title}}</td>
|
||||||
<td>{{task.content}}</td>
|
|
||||||
<td>
|
<td>
|
||||||
<a [routerLink]="['/userstories', {id: task.userstoryid}]">
|
<a [routerLink]="['/userstories', {id: task.userstoryid}]">
|
||||||
US #{{task.userstoryid}}
|
US #{{task.userstoryid}}
|
||||||
|
@ -85,10 +85,6 @@ export class TaskTableComponent extends TableComponentBase<ScrumTask> {
|
|||||||
this.doStringSort('title', task => task.title);
|
this.doStringSort('title', task => task.title);
|
||||||
}
|
}
|
||||||
|
|
||||||
sortByContent() {
|
|
||||||
this.doStringSort('content', task => task.content);
|
|
||||||
}
|
|
||||||
|
|
||||||
sortByPrio() {
|
sortByPrio() {
|
||||||
this.doNumericSort('priority', task => getNumberForPriority(task.priority));
|
this.doNumericSort('priority', task => getNumberForPriority(task.priority));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user