Skip to content

Commit

Permalink
Fix: #935 Newly added beneficiary isn't visible until manually refresh (
Browse files Browse the repository at this point in the history
  • Loading branch information
letelete authored and Saksham Handu committed Dec 20, 2018
1 parent a0572a0 commit 72cb86a
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
return rootView;
}

@Override
public void onResume() {
super.onResume();
beneficiaryListPresenter.loadBeneficiaries();
}

@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
Expand Down

0 comments on commit 72cb86a

Please sign in to comment.