Skip to content

Commit

Permalink
#7442 add tooltip to disconnect button
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariusz Jurowicz committed May 30, 2018
1 parent f5cd690 commit 3a5e6b0
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ private Label createAppStatus() {
private Button createDisconnectButton() {
Button disconnect = new Button();
disconnect.registerOnClick((content, message) -> getSparkSession().sparkContext().stop());
disconnect.setTooltip("Stop Spark Session");
disconnect.setDomClasses(new ArrayList<>(Arrays.asList("bx-button", "icon-close")));
return disconnect;
}
Expand Down

0 comments on commit 3a5e6b0

Please sign in to comment.