Skip to content
Snippets Groups Projects
Commit 15f09c4f authored by François Grand's avatar François Grand
Browse files

fix: specify input mode on mobile

parent 4b4766d6
No related branches found
No related tags found
No related merge requests found
Pipeline #143192 failed
This commit is part of merge request !229. Comments created here will be created in the context of that merge request.
......@@ -88,7 +88,9 @@
<input matInput *ngIf="isNumberInput(cell)" type="text" required
[ngModel]="getCellValue(cell)" (ngModelChange)="setCellValue(cell,$event)"
(input)="inputValueChanged($event, cell)" (keypress) ="invalidNANInputValue($event)">
(input)="inputValueChanged($event, cell)" (keypress) ="invalidNANInputValue($event)"
pattern="^-?([0-9]*\.)?([0-9]+[Ee]-?)?[0-9]+$" inputmode="numeric"
>
<mat-select #selectWidget *ngIf="isSelect(cell)" [value]="cell.modelValue"
(selectionChange)="loiDebitSelected($event, cell)">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment