Skip to content

Commit

Permalink
Merge pull request #6843 from jmacxx/arbitration_ticket_manual_close_…
Browse files Browse the repository at this point in the history
…reopen

Allow arbitration tickets to be manually reopened.
  • Loading branch information
alejandrogarcia83 committed Sep 6, 2023
2 parents c9f39a9 + 1bc6a9f commit f99cd13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,10 @@ public void initialize() {
root.getChildren().addAll(filterBox, tableView);

setupTable();

openOrCloseButton.setVisible(true);
openOrCloseButton.setManaged(true);
setupReOpenDisputeListener();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,6 @@ public MediatorView(MediationManager mediationManager,
@Override
public void initialize() {
super.initialize();
openOrCloseButton.setVisible(true);
openOrCloseButton.setManaged(true);
setupReOpenDisputeListener();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,6 @@ public MediationClientView(MediationManager mediationManager,
@Override
public void initialize() {
super.initialize();
openOrCloseButton.setVisible(true);
openOrCloseButton.setManaged(true);
setupReOpenDisputeListener();
}

@Override
Expand Down

0 comments on commit f99cd13

Please sign in to comment.