Skip to content
Snippets Groups Projects
Commit 9f621af0 authored by Zhan Huang's avatar Zhan Huang
Browse files

bug fix

parent e34b403f
No related branches found
No related tags found
2 merge requests!60Dev,!43Shared data model
......@@ -63,13 +63,17 @@ const Dashboard = ({ currentUser, history }) => {
{query} ({total})
</QueryLabel>
<SearchBoxes history={history} />
<PaginationPane>
<Pagination
onPageEntered={onPageEntered}
pageSize="10"
totalSize={total}
/>
</PaginationPane>
{total ? (
<PaginationPane>
<Pagination
onPageEntered={onPageEntered}
pageSize="10"
totalSize={total}
/>
</PaginationPane>
) : (
''
)}
<DashboardList
currentUser={currentUser}
listData={manuscripts.reverse()}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment