Gestion issue epic dans milestone
This commit is contained in:
@@ -120,21 +120,27 @@
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<label class="field-label">Milestone</label>
|
||||
<div class="d-flex gap-2 align-items-center">
|
||||
<select aria-label="Milestone" class="form-select form-select-sm" [ngModel]="currentMilestoneId" (ngModelChange)="onMilestoneChange($event)">
|
||||
<option [ngValue]="null">—</option>
|
||||
@for (m of milestones(); track m.id) {
|
||||
<option [ngValue]="m.id">{{ m.name }}</option>
|
||||
}
|
||||
</select>
|
||||
@if (currentMilestoneId !== null) {
|
||||
<button type="button" class="btn btn-sm btn-outline-secondary flex-shrink-0" (click)="navigateToMilestone()" title="Voir le Milestone">↗</button>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
<div>
|
||||
<label class="field-label">Milestone</label>
|
||||
<div class="d-flex gap-2 align-items-center">
|
||||
<select
|
||||
aria-label="Milestone"
|
||||
class="form-select form-select-sm"
|
||||
[ngModel]="currentMilestoneId"
|
||||
(ngModelChange)="onMilestoneChange($event)"
|
||||
[disabled]="isChildOfEpic"
|
||||
>
|
||||
<option [ngValue]="null">—</option>
|
||||
@for (m of milestones(); track m.id) {
|
||||
<option [ngValue]="m.id">{{ m.name }}</option>
|
||||
}
|
||||
</select>
|
||||
@if (currentMilestoneId !== null) {
|
||||
<button type="button" class="btn btn-sm btn-outline-secondary flex-shrink-0" (click)="navigateToMilestone()" title="Voir le Milestone">↗</button>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user