Skip to content

Commit

Permalink
Allow arbitration tickets to be manually reopened.
Browse files Browse the repository at this point in the history
This is useful in cases where a user did not receive the ticket
closure message:
The user messages the arbitrator asking for clarification.
Arbitrator re-opens the ticket and re-sends the closing message.
  • Loading branch information
jmacxx committed Sep 1, 2023
1 parent 9813ae7 commit 1bc6a9f
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 1bc6a9f

Please sign in to comment.