diff --git a/src/app/task-table/task-table.component.html b/src/app/task-table/task-table.component.html index 09f9851..7cbd4df 100644 --- a/src/app/task-table/task-table.component.html +++ b/src/app/task-table/task-table.component.html @@ -33,13 +33,6 @@ - - Inhalt - - - - - Userstory @@ -68,7 +61,6 @@ {{task.id}} {{task.title}} - {{task.content}} US #{{task.userstoryid}} diff --git a/src/app/task-table/task-table.component.ts b/src/app/task-table/task-table.component.ts index 8de5b15..50dd98c 100644 --- a/src/app/task-table/task-table.component.ts +++ b/src/app/task-table/task-table.component.ts @@ -85,10 +85,6 @@ export class TaskTableComponent extends TableComponentBase { this.doStringSort('title', task => task.title); } - sortByContent() { - this.doStringSort('content', task => task.content); - } - sortByPrio() { this.doNumericSort('priority', task => getNumberForPriority(task.priority)); }