Skip to content

Commit

Permalink
Merge pull request #21 from Cambio-Project/fix-predicates-closed
Browse files Browse the repository at this point in the history
Set predicates opened by default
  • Loading branch information
franksn90 authored Sep 4, 2024
2 parents 6a1b71f + 43263f6 commit 1348b87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class PredicateEditDynamicComponent implements OnInit {
@ViewChild("myPlot") myPlot?: ElementRef

validationResponse?: ValidationResponse;
editFormExpaneded: boolean = false;
editFormExpaneded: boolean = true;

comparisonValue: FormControl = new FormControl(null, [Validators.required])
logicOperator: FormControl = new FormControl(null, [Validators.required])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class PredicateEditComponent implements OnInit {
@ViewChild("myPlot") myPlot?: ElementRef

validationResponse?: ValidationResponse;
editFormExpaneded: boolean = false;
editFormExpaneded: boolean = true;

comparisonValue: FormControl = new FormControl(null, [Validators.required])
logicOperator: FormControl = new FormControl(null, [Validators.required])
Expand Down

0 comments on commit 1348b87

Please sign in to comment.