Skip to content
Snippets Groups Projects
Commit 20a0bee4 authored by mathias.chouet's avatar mathias.chouet
Browse files

Fix #145

parent 73159ce4
No related branches found
No related tags found
1 merge request!36Resolve "Déplacer la (dé)dérialisation dans JalHyd"
......@@ -3,16 +3,16 @@
{{ title }}
</mat-card-title>
<div *ngIf="showButtons" class="hyd-window-btns">
<button mat-icon-button (click)="onAddClick()">
<button type="button" mat-icon-button (click)="onAddClick()">
<mat-icon>add_box</mat-icon>
</button>
<button mat-icon-button [disabled]="! enableRemoveButton" (click)="onRemoveClick()">
<button type="button" mat-icon-button [disabled]="! enableRemoveButton" (click)="onRemoveClick()">
<mat-icon>delete</mat-icon>
</button>
<button mat-icon-button [disabled]="! enableUpButton" (click)="onMoveUpClick()">
<button type="button" mat-icon-button [disabled]="! enableUpButton" (click)="onMoveUpClick()">
<mat-icon>arrow_upward</mat-icon>
</button>
<button mat-icon-button [disabled]="! enableDownButton" (click)="onMoveDownClick()">
<button type="button" mat-icon-button [disabled]="! enableDownButton" (click)="onMoveDownClick()">
<mat-icon>arrow_downward</mat-icon>
</button>
</div>
......
......@@ -40,7 +40,7 @@
<mat-card-actions>
<!-- bouton calculer -->
<button mat-raised-button color="accent" name="Calculer" (click)="doCompute()"[disabled]="isCalculateDisabled">
<button type="submit" mat-raised-button color="accent" name="Calculer" (click)="doCompute()"[disabled]="isCalculateDisabled">
{{ uitextCalculer }}
</button>
</mat-card-actions>
......
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