return tree;
}
private KongaDialog createDialog(IntegrationEntityTree tree) {
BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 2);
layout.north("The following items will be deployed:").center(tree);
KongaDialog dialog = new KongaDialog(UiUtils.getActiveFrame(), "Items To Deploy", true);
dialog.standardLayout(layout, KongaDialog.CLOSE_ONLY);
dialog.setLocationRelativeTo(null);
dialog.manageLocation(DeployDataPreview.class);
return dialog;