From eefa6de6783979f88622bd6fe80c819832c183a6 Mon Sep 17 00:00:00 2001 From: Niggl Date: Mon, 29 Jun 2020 14:31:09 +0200 Subject: [PATCH] Removed collum "Inhalt" from Userstory Table --- src/app/userstory-table/userstory-table.component.html | 8 -------- src/app/userstory-table/userstory-table.component.ts | 4 ---- 2 files changed, 12 deletions(-) diff --git a/src/app/userstory-table/userstory-table.component.html b/src/app/userstory-table/userstory-table.component.html index dfa125a..de1b587 100644 --- a/src/app/userstory-table/userstory-table.component.html +++ b/src/app/userstory-table/userstory-table.component.html @@ -22,13 +22,6 @@ - - Inhalt - - - - - Tasks @@ -57,7 +50,6 @@ {{userstory.id}} {{userstory.title}} - {{userstory.content}} {{getNumberOfTasks(userstory)}} Tasks diff --git a/src/app/userstory-table/userstory-table.component.ts b/src/app/userstory-table/userstory-table.component.ts index dd86eff..dc245ec 100644 --- a/src/app/userstory-table/userstory-table.component.ts +++ b/src/app/userstory-table/userstory-table.component.ts @@ -88,10 +88,6 @@ export class UserstoryTableComponent extends TableComponentBase this.doStringSort('title', us => us.title); } - public sortByContent() { - this.doStringSort('content', us => us.content); - } - public sortByPrio() { this.doNumericSort('priority', us => getNumberForPriority(us.priority)); }