Skip to content

Commit

Permalink
Fixed input ids for rmv
Browse files Browse the repository at this point in the history
  • Loading branch information
jirkapok committed Aug 9, 2024
1 parent ea19ba4 commit ff31c81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/planner/src/app/diver/diver.component.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<div class="mt-3 row">
<ng-container [formGroup]="diverForm">
<div class="pt-2 mt-2 mb-4 col col-12 col-md-6">
<label for="sac" class="form-label" mdbLabel>RMV [{{units.rmv}}]:</label>
<input class="form-control" id="sac" formControlName="rmv" type="number" (input)="inputChanged()"
<label for="rmv" class="form-label" mdbLabel>RMV [{{units.rmv}}]:</label>
<input class="form-control" id="rmv" formControlName="rmv" type="number" (input)="inputChanged()"
[min]="ranges.diverRmv[0]" [max]="ranges.diverRmv[1]" [step]="rmvStep"
[class.is-invalid]="rmvInvalid" />
<div class="invalid-feedback position-absolute">Needs to be number {{ranges.diverRmvLabel}}</div>
Expand Down

0 comments on commit ff31c81

Please sign in to comment.