fixed some wrong attributes

This commit is contained in:
Nicolai Ort 2020-06-29 16:37:33 +02:00
parent 3d86cc8620
commit 5fb7122aa7
3 changed files with 4 additions and 5 deletions

View File

@ -50,7 +50,7 @@
<div class="form-group">
<label for="Inhalt">Status</label>
<input type="text" class="form-control" id="Status" required name="status"
[(ngModel)]="task.status">
[(ngModel)]="task.statusid">
</div>
<div class="form-group">
<label for="Inhalt">Assigned User</label>

View File

@ -37,19 +37,18 @@
<textarea type="text" class="form-control" id="Story" required name="story" rows="5"
[(ngModel)]="userstory.content"></textarea>
</div>
</div>
<div class="col-md-1"></div>
<div class="col-md-2">
<div class="form-group">
<label for="Inhalt">Status</label>
<input type="text" class="form-control" id="Status" required name="status"
[(ngModel)]="userstory.status">
[(ngModel)]="userstory.statusid">
</div>
<div class="form-group">
<label for="Inhalt">Autor</label>
<input type="text" class="form-control" id="Author" required name="author"
[(ngModel)]="userstory.createdby">
[(ngModel)]="userstory.createdbyid">
</div>
</div>
</div>

View File

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