Skip to content

Commit

Permalink
#7332 changed default config name to empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasz Mitusinski committed Jun 19, 2018
1 parent 8c3a677 commit aadb86e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ private HBox createProfileModal() {
}

private HBox createProfileManagement() {
List profiles = sparkUiDefaults.getProfiles();
Dropdown profileDropdown = new Dropdown();
profileDropdown.setOptions(this.sparkUiDefaults.getProfileNames());
profileDropdown.setValue(this.sparkUiDefaults.getCurrentProfileName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

public interface SparkUiDefaults {

String DEFAULT_PROFILE = "Default";
String DEFAULT_PROFILE = "";

void saveSparkConf(List<Map<String, Object>> sparkConf);

Expand Down

0 comments on commit aadb86e

Please sign in to comment.