Skip to content

Commit

Permalink
Merge pull request #1094 from rosensilva/main
Browse files Browse the repository at this point in the history
fix issues for 8.1.0-rc2 release
  • Loading branch information
rosensilva authored Mar 28, 2022
2 parents 8cb0236 + 3ec9150 commit a0b1bc0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public class ImportPublisherAPIWizardPage extends WizardPage {
Text txtUserName;
Text txtPassword;
Text txtAPIMHostUrl;
public Text initilizeText;
private ArrayList<PublisherAPI> apiList;
HashMap<Integer, String> tableAPIMapper;
String selectedApi;
Expand Down Expand Up @@ -102,12 +103,11 @@ public void createControl(Composite parent) {

// create dummy read-only text box to fix:
// https://github.com/wso2/integration-studio/issues/1057
Text initilizeText = new Text(container, SWT.NONE | SWT.READ_ONLY);
initilizeText = new Text(container, SWT.NONE | SWT.READ_ONLY);
data = new FormData();
data.height = 0;
data.width = 0;
data.height = 1;

initilizeText.setLayoutData(data);

Composite credentialsContainer = new Composite(container, SWT.NULL);
credentialsContainer.setLayout(new FormLayout());
data = new FormData();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -995,6 +995,7 @@ public IWizardPage getNextPage(IWizardPage page) {
ProjectOptionsPage projectOptionsPage = (ProjectOptionsPage) page;
if (projectOptionsPage.getSelectedProjectOption().getId().equals("import.api.publisher")) {
nextPage = importPublisherAPIWizard;
importPublisherAPIWizard.initilizeText.setVisible(false);
}
else if (currentPage instanceof ProjectOptionsPage) {
nextPage = super.getNextPage(page);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
<activti.designer.version>5.18.0</activti.designer.version>
<mi.product.version>4.1.0</mi.product.version>
<mi.product.directory>4.1.0</mi.product.directory>
<mi.dashboard.version>4.1.0-rc1</mi.dashboard.version>
<mi.dashboard.version>4.1.0</mi.dashboard.version>
<apache.maven.version>3.6.3</apache.maven.version>
<version.sortpom.plugin>2.3.0</version.sortpom.plugin>
</properties>
Expand Down

0 comments on commit a0b1bc0

Please sign in to comment.