Skip to content
Snippets Groups Projects
Commit 4b967662 authored by François Grand's avatar François Grand Committed by David Dorchies
Browse files

fix: fish ladder: invalidate "calculate" button if any table cell is empty

refs #552
parent c2f5df02
No related branches found
No related tags found
1 merge request!156Resolve "PAB: Lancement du calcul possible avec des champs vides"
......@@ -85,7 +85,7 @@
[class.select]="isSelect(cell)" [attr.rowspan]="rowSpan(cell)" [attr.colspan]="colSpan(cell)"
[title]="cellTitle(cell)">
<input matInput *ngIf="isNumberInput(cell)" step="0.00000000000001" type="number"
<input matInput *ngIf="isNumberInput(cell)" step="0.00000000000001" type="number" required
[(ngModel)]="cell.model.singleValue" (input)="inputValueChanged($event, cell)">
<mat-select #selectWidget *ngIf="isSelect(cell)" [value]="cell.modelValue"
......
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