Skip to content

Commit

Permalink
#7535 fix class vanishing on start button
Browse files Browse the repository at this point in the history
  • Loading branch information
piorek committed Jun 20, 2018
1 parent 6ec3672 commit b1cffeb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ public void setAllToEnabled() {
this.profileManagement.getChildren().stream().map(x -> (ValueWidget) x).forEach(x -> x.setDisabled(false));
this.advancedOption.setEnabledToAll();
this.connectButton.setDisabled(false);
this.connectButton.setDomClasses(new ArrayList<>());
this.connectButton.setDomClasses(new ArrayList<>(asList("bx-spark-connect")));
this.masterURL.setDisabled(false);
this.executorMemory.setDisabled(false);
this.executorCores.setDisabled(false);
Expand Down

0 comments on commit b1cffeb

Please sign in to comment.