declared status variable
This commit is contained in:
parent
14a489c779
commit
df1b3be4ec
@ -60,7 +60,7 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<a class="dropdown-item" href="#" (click)="createTaskStatus()">Neuer Status</a>
|
<a class="dropdown-item" href="#" (click)="createTaskStatus()">Neuer Status</a>
|
||||||
<a class="dropdown-item" href="#" (click)="deleteStatus()">Status löschen</a>
|
<a class="dropdown-item" href="#" (click)="deleteStatus()">Status löschen</a>
|
||||||
<input type="text" class="form-control" [(ngModel)]="task.title">
|
<input type="text" class="form-control" [(ngModel)]="status.title">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -25,7 +25,7 @@ export class TaskFormComponent implements OnInit {
|
|||||||
public userstoryId: string;
|
public userstoryId: string;
|
||||||
public userstories: any[] = [];
|
public userstories: any[] = [];
|
||||||
public allStatus: any[] = [];
|
public allStatus: any[] = [];
|
||||||
public status: ScrumStatus;
|
public status: ScrumStatus = { title: '', description: '' };
|
||||||
|
|
||||||
constructor(private backendService: BackendService, private activeModalService: NgbActiveModal) {
|
constructor(private backendService: BackendService, private activeModalService: NgbActiveModal) {
|
||||||
this.getUserStories();
|
this.getUserStories();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user