userstory dropdown only when creating task
This commit is contained in:
@@ -5,12 +5,12 @@
|
||||
<h4 class="modal-title">Neuen Task anlegen</h4>
|
||||
</tr>
|
||||
<tr>
|
||||
<h6 class="modal-caption text-muted">
|
||||
<h6 class="modal-caption text-muted" *ngIf="this.editing">
|
||||
Gehört zu Story:
|
||||
<a href="#" id="userstoryTitle">{{ this.userstoryId }}</a>
|
||||
</h6>
|
||||
</tr>
|
||||
<select class="form-control custom-select mr-sm-2" id="prio" required name="prio" [(ngModel)]="task.userstoryid">
|
||||
<select *ngIf="!this.editing" class="form-control custom-select mr-sm-2" id="prio" required name="prio" [(ngModel)]="task.userstoryid">
|
||||
<option *ngFor="let userstory of userstories" [ngValue]="userstory.id">{{ userstory.title }}</option>
|
||||
</select>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user