Skip to content

Commit

Permalink
Solved Problem with Installing in Version 7.2.1 of the Studio and the…
Browse files Browse the repository at this point in the history
… display of the configuration
  • Loading branch information
WiednerF committed Jul 25, 2019
1 parent e08d319 commit e2f2a50
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ mvnw clean install
mvnw talend-component:deploy-in-studio -Dtalend.component.studioHome=<Studio-Home>
```

If this is not working as it should, use the following commands instead of the deploy-in-studio command:

```bash
mvnw talend-component.car
java -jar target\ARXDeidentifier-1.0.0.car studio-deploy --location <Studio Location>
```

License
------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
import java.util.ArrayList;
import java.util.List;

import static org.talend.sdk.component.api.configuration.ui.layout.GridLayout.FormType.MAIN;

@Data
@GridLayout({
@GridLayout(names = MAIN,value = {
// the generated layout put one configuration entry per line,
// customize it as much as needed
@GridLayout.Row({"highestRisk"}),
@GridLayout.Row({"highestRisk"}),
@GridLayout.Row({"averageRisk"}),
@GridLayout.Row({ "recordsAtRisk" }),
@GridLayout.Row({ "qis" })
Expand Down

0 comments on commit e2f2a50

Please sign in to comment.