From 9bcf7b70d0ea8b03c83d16a328376458ddbeb774 Mon Sep 17 00:00:00 2001 From: Niggl Date: Mon, 29 Jun 2020 14:29:57 +0200 Subject: [PATCH] Removed collum "Inhalt" from Task Table --- src/app/task-table/task-table.component.html | 8 -------- src/app/task-table/task-table.component.ts | 4 ---- 2 files changed, 12 deletions(-) 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)); }