Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
floris-thijssen-ritense committed Oct 18, 2024
1 parent 881c794 commit e2bc098
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</ng-container>

@for (property of propertyList; track property) {
@if (property == 'description') {
@if (property === 'description') {
<div class="property-input">
<v-input
name="description"
Expand All @@ -103,7 +103,7 @@
<svg class="cds--btn__icon" cdsIcon="trash-can" size="16"></svg>
</button>
</div>
} @else if (property == 'plannedEndDate') {
} @else if (property === 'plannedEndDate') {
<div class="property-input">
<v-input
name="plannedEndDate"
Expand All @@ -122,7 +122,7 @@
<svg class="cds--btn__icon" cdsIcon="trash-can" size="16"></svg>
</button>
</div>
} @else if (property == 'finalDeliveryDate') {
} @else if (property === 'finalDeliveryDate') {
<div class="property-input">
<v-input
name="finalDeliveryDate"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
}

.property-input button {
height: 3rem;
width: 3rem;
margin: 1rem;
height: 46px;
width: 46px;
margin: 16px;
}

.delete-button:hover {
Expand Down

0 comments on commit e2bc098

Please sign in to comment.