From cfb2b7f98bffed95307537755baa7af7f8580bb7 Mon Sep 17 00:00:00 2001 From: Niggl Date: Fri, 3 Jul 2020 17:27:19 +0200 Subject: [PATCH] Both sides w/ cards --- src/app/backlog-table/backlog.component.html | 122 +++---------------- src/app/backlog-table/backlog.component.ts | 1 - 2 files changed, 19 insertions(+), 104 deletions(-) diff --git a/src/app/backlog-table/backlog.component.html b/src/app/backlog-table/backlog.component.html index 091a1a3..486e3df 100644 --- a/src/app/backlog-table/backlog.component.html +++ b/src/app/backlog-table/backlog.component.html @@ -36,109 +36,25 @@

Sprint-Backlog - y

- - - - - - - - - - - - - - - - - - - - - - - - - - -
- ID - - - - - - - Titel - - - - - - - Tasks - - - - - - - Status - - - - - - -
-
- Priorität: -
- {{filterPriority || "All"}} -
- - -
-
- - - - - -
-
-
- Category - - - - - -
{{userstory.id}}{{userstory.title}} - - {{getNumberOfTasks(userstory)}} Tasks - - - - {{getStatusTitleById(userstory.statusid)}} - - {{userstory.priority}} - - {{getCategoryTitleById(userstory.categoryid)}} - - - -
+
+
+
+

{{story.title}}

+
Prio: {{story.priority}}
+

{{story.content}}

+
+ Category: {{story.categoryid || "N/A"}} + Status: {{story.statusid || "N/A"}} +
+
+ +
+
+
+
\ No newline at end of file diff --git a/src/app/backlog-table/backlog.component.ts b/src/app/backlog-table/backlog.component.ts index 19b1e3d..54769ea 100644 --- a/src/app/backlog-table/backlog.component.ts +++ b/src/app/backlog-table/backlog.component.ts @@ -164,7 +164,6 @@ export class BacklogComponent extends TableComponentBase< } else { var currentDate = new Date(); this.currentSprint = response.body.find(x => x.startDate < currentDate); - alert(this.currentSprint); }}); }