Skip to content

Commit

Permalink
Fix lint error in route-create.component.html
Browse files Browse the repository at this point in the history
  • Loading branch information
rogargon authored Dec 4, 2023
1 parent a7d28c6 commit 44426a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/routes/route-create/route-create.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<div class="form-group mb-3">
<label class="control-label" for="type">Type</label>
<select class="form-select" aria-label="type" id="type" name="type" [(ngModel)]="route.type" #type="ngModel">
<option *ngFor="let typ of types;let i=index" [value]="typ" [selected]="i == 0">{{typ}}</option>
<option *ngFor="let typ of types;let i=index" [value]="typ" [selected]="i === 0">{{typ}}</option>
</select>
</div>

Expand Down

0 comments on commit 44426a6

Please sign in to comment.