Removed collum "Inhalt" from Userstory Table
This commit is contained in:
parent
9bcf7b70d0
commit
eefa6de678
@ -22,13 +22,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>Tasks</span>
|
<span>Tasks</span>
|
||||||
<span *ngIf="sortBy === 'tasks'" class="pl-3">
|
<span *ngIf="sortBy === 'tasks'" class="pl-3">
|
||||||
@ -57,7 +50,6 @@
|
|||||||
<tr *ngFor="let userstory of filteredItems" [class.table-info]="userstory.id === highlightId">
|
<tr *ngFor="let userstory of filteredItems" [class.table-info]="userstory.id === highlightId">
|
||||||
<td>{{userstory.id}}</td>
|
<td>{{userstory.id}}</td>
|
||||||
<td>{{userstory.title}}</td>
|
<td>{{userstory.title}}</td>
|
||||||
<td>{{userstory.content}}</td>
|
|
||||||
<td>
|
<td>
|
||||||
<a [routerLink]="['/tasks', {userstoryId: userstory.id}]">
|
<a [routerLink]="['/tasks', {userstoryId: userstory.id}]">
|
||||||
{{getNumberOfTasks(userstory)}} Tasks
|
{{getNumberOfTasks(userstory)}} Tasks
|
||||||
|
@ -88,10 +88,6 @@ export class UserstoryTableComponent extends TableComponentBase<ScrumUserstory>
|
|||||||
this.doStringSort('title', us => us.title);
|
this.doStringSort('title', us => us.title);
|
||||||
}
|
}
|
||||||
|
|
||||||
public sortByContent() {
|
|
||||||
this.doStringSort('content', us => us.content);
|
|
||||||
}
|
|
||||||
|
|
||||||
public sortByPrio() {
|
public sortByPrio() {
|
||||||
this.doNumericSort('priority', us => getNumberForPriority(us.priority));
|
this.doNumericSort('priority', us => getNumberForPriority(us.priority));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user