Removed collum "Inhalt" from Task Table
This commit is contained in:
		@@ -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}}
 | 
			
		||||
 
 | 
			
		||||
@@ -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));
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user