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

Fix #146

parent f1ffa871
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,7 @@ mat-card-actions { ...@@ -78,7 +78,7 @@ mat-card-actions {
} }
mat-card-content { mat-card-content {
padding: 0 1em; padding: 0 1em 1em;
} }
} }
} }
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<mat-card-content> <mat-card-content>
<field-set *ngFor="let fs of fieldsets" class="fieldset-inner" [fieldSet]=fs <field-set *ngFor="let fs of fieldsets" class="fieldset-inner" [fieldSet]=fs
(radio)=onRadioClick($event) (valid)=onFieldsetValid() (inputChange)=onInputChange() (radio)=onRadioClick($event) (validChange)=onFieldsetValid() (inputChange)=onInputChange()
(addFieldset)=onAddFieldset($event) (removeFieldset)=onRemoveFieldset($event) (addFieldset)=onAddFieldset($event) (removeFieldset)=onRemoveFieldset($event)
(moveFieldsetDown)=onMoveFieldsetDown($event) (moveFieldsetUp)=onMoveFieldsetUp($event)> (moveFieldsetDown)=onMoveFieldsetDown($event) (moveFieldsetUp)=onMoveFieldsetUp($event)>
</field-set> </field-set>
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<mat-card-actions> <mat-card-actions>
<!-- bouton calculer --> <!-- bouton calculer -->
<button type="submit" id="trigger-calculate" mat-raised-button color="accent" name="Calculer" (click)="doCompute()"[disabled]="isCalculateDisabled"> <button type="submit" id="trigger-calculate" mat-raised-button color="accent" name="Calculer" (click)="doCompute()" [disabled]="isCalculateDisabled">
{{ uitextCalculer }} {{ uitextCalculer }}
</button> </button>
</mat-card-actions> </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