From 5fb7122aa7d2599c229ec0cd7bff6fa8fec0c480 Mon Sep 17 00:00:00 2001 From: Niggl Date: Mon, 29 Jun 2020 16:37:33 +0200 Subject: [PATCH] fixed some wrong attributes --- src/app/task-form/task-form.component.html | 2 +- src/app/userstory-form/userstory-form.component.html | 5 ++--- src/assets/env.js | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/app/task-form/task-form.component.html b/src/app/task-form/task-form.component.html index d63239f..5aa9229 100644 --- a/src/app/task-form/task-form.component.html +++ b/src/app/task-form/task-form.component.html @@ -50,7 +50,7 @@
+ [(ngModel)]="task.statusid">
diff --git a/src/app/userstory-form/userstory-form.component.html b/src/app/userstory-form/userstory-form.component.html index 0b2ddc8..45aa071 100644 --- a/src/app/userstory-form/userstory-form.component.html +++ b/src/app/userstory-form/userstory-form.component.html @@ -37,19 +37,18 @@
-
+ [(ngModel)]="userstory.statusid">
+ [(ngModel)]="userstory.createdbyid">
diff --git a/src/assets/env.js b/src/assets/env.js index 38fc952..777214b 100644 --- a/src/assets/env.js +++ b/src/assets/env.js @@ -2,6 +2,6 @@ window['env'] = window['env'] || {}; // Environment variables - window['env']['apiUrl'] = 'http://taskboard.dev.nig.gl/api'; + window['env']['apiUrl'] = 'https://taskboard.dev.nig.gl/api'; window['env']['debug'] = false; })(this);