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)); }