Skip to content

Commit

Permalink
Merge pull request #906 from ivary43/Issue#876
Browse files Browse the repository at this point in the history
fix: Corrected labelling of Toolbar in client documents, surveys
  • Loading branch information
AbhilashG97 authored Jul 28, 2020
2 parents 7b14da2 + ebaa902 commit fb77683
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle
ButterKnife.bind(this, rootView);
mDocumentListPresenter.attachView(this);

setToolbarTitle(getString(R.string.documents));
LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity());
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
rv_documents.setLayoutManager(layoutManager);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle
ButterKnife.bind(this, rootView);
mSurveyListPresenter.attachView(this);

setToolbarTitle(getString(R.string.surveys));
mSurveyListPresenter.loadSurveyList();

return rootView;
Expand Down

0 comments on commit fb77683

Please sign in to comment.