Skip to content

Commit

Permalink
css applied to the wrong element
Browse files Browse the repository at this point in the history
  • Loading branch information
Narshe1412 committed Sep 1, 2019
1 parent 9babc60 commit a82d107
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/tasks/task/task.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
</div>

<!-- Manually updates the task status and display the times associated with the task -->
<div class="task-status-container">
<div class="form-group" *ngIf="expanded">
<div class="task-status-container" *ngIf="expanded">
<div class="form-group">
<label for="status">Task Status</label>
<select class="form-control" id="status" required (change)="onSelectStatus($event)">
<option *ngFor="let status of statusType" [ngValue]="status" [selected]="task.status === status">{{
Expand Down

0 comments on commit a82d107

Please sign in to comment.