copied current version of master
This commit is contained in:
parent
2b415336c3
commit
a4c3cfd331
@ -55,9 +55,14 @@
|
||||
<!-- <input type="text" class="form-control" id="Status" required name="status"
|
||||
[(ngModel)]="task.status"> -->
|
||||
<select class="form-control custom-select mr-sm-2" id="prio" required name="prio"
|
||||
[(ngModel)]="task.priority">
|
||||
<option *ngFor="let status of allStatus" value="low">{{status.title}}</option>
|
||||
[(ngModel)]="task.statusid">
|
||||
<option *ngFor="let status of allStatus">{{task.statusid}}</option>
|
||||
<div class="dropdown-divider"></div>
|
||||
<button (click)="addNewStatus()" typpe="Add">Add</button>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="Inhalt">Assigned User</label>
|
||||
|
@ -91,4 +91,9 @@ export class TaskFormComponent implements OnInit {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
addNewStatus(){
|
||||
allStatus
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user