Skip to content

Commit

Permalink
#7549 changed available properties link position
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasz Mitusinski committed Jun 20, 2018
1 parent e856000 commit 2cfb186
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class SparkConfiguration extends VBox {
SparkConfiguration(Map<String, String> advancedSettings, String sparkVersion) {
super(new ArrayList<>());
this.add = createAddButton();
this.header = new HBox(asList(this.add, sparkVersionWidget(sparkVersion)));
this.header = new HBox(asList(sparkVersionWidget(sparkVersion), this.add));
List<PropertyItem> propertyItems = createPropertyItems(advancedSettings);
this.properties = new PropertiesWidget(propertyItems);
VBox configuration = new VBox(asList(this.properties.getWidget(), this.header));
Expand Down

0 comments on commit 2cfb186

Please sign in to comment.