From 971994aee00f206b9940287408a233fcdabfe729 Mon Sep 17 00:00:00 2001 From: Jakob Fahr Date: Mon, 6 Jul 2020 23:06:05 +0200 Subject: [PATCH] Fix more minor code issues --- src/app/app.component.html | 5 ++ .../sprint-form/sprint-form.component.html | 64 ++++++++++--------- src/app/task-form/task-form.component.html | 6 +- src/app/task-form/task-form.component.ts | 2 +- .../userstory-form.component.ts | 2 +- 5 files changed, 44 insertions(+), 35 deletions(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index 4ae5f26..4345092 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -12,6 +12,11 @@

Dashboard

+
  • + +

    Backlog

    +
    +
  • Sprints

    diff --git a/src/app/sprint-form/sprint-form.component.html b/src/app/sprint-form/sprint-form.component.html index d3d4e16..7b197d2 100644 --- a/src/app/sprint-form/sprint-form.component.html +++ b/src/app/sprint-form/sprint-form.component.html @@ -1,32 +1,36 @@ -
    -
    +
    +
    -
    - +
    + +
    +

    Neuen Sprint anlegen

    +
    +
    + + +
    +
    + + +
    +
    + + +
    + +
    + + +
    +
    -

    Neuen Sprint anlegen

    -
    -
    - - -
    -
    - - -
    -
    - - -
    - -
    - - -
    -
    -
    -
    \ No newline at end of file +
    +
    diff --git a/src/app/task-form/task-form.component.html b/src/app/task-form/task-form.component.html index 872a86a..d653550 100644 --- a/src/app/task-form/task-form.component.html +++ b/src/app/task-form/task-form.component.html @@ -50,7 +50,7 @@
    \ No newline at end of file +
    diff --git a/src/app/task-form/task-form.component.ts b/src/app/task-form/task-form.component.ts index d4df3c8..2f036f1 100644 --- a/src/app/task-form/task-form.component.ts +++ b/src/app/task-form/task-form.component.ts @@ -133,7 +133,7 @@ export class TaskFormComponent implements OnInit { }); } - getAllPriorities(): string[] { + getAllPriorities(): Priority[] { return Object.values(Priority); } diff --git a/src/app/userstory-form/userstory-form.component.ts b/src/app/userstory-form/userstory-form.component.ts index 024906f..97fd56a 100644 --- a/src/app/userstory-form/userstory-form.component.ts +++ b/src/app/userstory-form/userstory-form.component.ts @@ -100,7 +100,7 @@ export class UserstoryFormComponent implements OnInit { }); } - getAllPriorities(): string[] { + getAllPriorities(): Priority[] { return Object.values(Priority); }