Skip to content

Commit da34fcd

Browse files
committed
IOT-1153: Frame count is numbers
1 parent c622ce5 commit da34fcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/applications/iot-devices/iot-device-edit/iot-device-edit.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,15 +191,15 @@ <h3>{{'QUESTION.ABP' | translate}}</h3>
191191

192192
<div class="form-group mt-5">
193193
<label class="form-label" for="fCntUp">{{'QUESTION.FCNTUP' | translate}}*</label>
194-
<input type="text" id="fCntUp" name="fCntUp" maxLength="32"
194+
<input type="number" id="fCntUp" name="fCntUp" maxLength="32"
195195
[placeholder]="'QUESTION.FCNTUP-PLACEHOLDER' | translate" class="form-control"
196196
[(ngModel)]="iotDevice.lorawanSettings.fCntUp"
197197
[ngClass]="{'is-invalid' : formFailedSubmit && errorFields.includes('fCntUp'), 'is-valid' : formFailedSubmit && !errorFields.includes('fCntUp')}">
198198
</div>
199199

200200
<div class="form-group mt-5">
201201
<label class="form-label" for="nFCntDown">{{'QUESTION.NFCNTDOWN' | translate}}*</label>
202-
<input type="text" id="nFCntDown" name="nFCntDown" maxLength="32"
202+
<input type="number" id="nFCntDown" name="nFCntDown" maxLength="32"
203203
[placeholder]="'QUESTION.NFCNTDOWN-PLACEHOLDER' | translate" class="form-control"
204204
[(ngModel)]="iotDevice.lorawanSettings.nFCntDown"
205205
[ngClass]="{'is-invalid' : formFailedSubmit && errorFields.includes('nFCntDown'), 'is-valid' : formFailedSubmit && !errorFields.includes('nFCntDown')}">

0 commit comments

Comments
 (0)