Skip to content

Commit

Permalink
fix: Container page refresh performed at completed operation (#5487)
Browse files Browse the repository at this point in the history
Signed-off-by: MMaiero <[email protected]>
  • Loading branch information
MMaiero authored Oct 28, 2024
1 parent 6e2460e commit 3ff4163
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ public void onFailure(Throwable caught) {
@Override
public void onSuccess(Void result) {
EntryClassUi.hideWaitModal();
refresh();
}
});

Expand All @@ -307,7 +308,6 @@ public void onFailure(Throwable caught) {
FailureHandler.handle(caught);
}
});
refresh();
}

private void stopSelectedContainer() {
Expand Down Expand Up @@ -337,11 +337,11 @@ public void onFailure(Throwable caught) {
public void onSuccess(Void result) {
EntryClassUi.hideWaitModal();
DockerContainersTabUi.this.containersStop.setEnabled(false);
refresh();
}
});
}
});
refresh();
}

private void loadContainersTable(CellTable<GwtGroupedNVPair> bundlesGrid2,
Expand Down

0 comments on commit 3ff4163

Please sign in to comment.