Skip to content

Commit

Permalink
build(deps): bump toolkit to 26.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
QuCMGisaia committed Oct 25, 2024
1 parent 3892ede commit c0dbea4
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 28 deletions.
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"ajv": "8.8.2",
"ajv-keywords": "5.1.0",
"ang-jsoneditor": "1.10.5",
"arlas-wui-toolkit": "~26.0.6",
"arlas-wui-toolkit": "~26.0.8",
"file-saver": "^2.0.2",
"jsoneditor": "9.5.6",
"moment": "^2.29.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,11 @@ export class ConfigFormControlComponent implements OnInit, AfterViewInit, AfterV
Object.keys(componentFormControl.inputs).forEach(c => {
componentRef.instance[c] = componentFormControl.inputs[c]();
});
Object.keys(componentFormControl.outputs).forEach(c => {
componentRef.instance[c].subscribe(val => componentFormControl.outputs[c](val));
});
if (!!componentFormControl.outputs) {
Object.keys(componentFormControl.outputs).forEach(c => {
componentRef.instance[c].subscribe(val => componentFormControl.outputs[c](val));
});
}
}
}

Expand Down

0 comments on commit c0dbea4

Please sign in to comment.