Skip to content

Commit

Permalink
前端-修复分页按钮不即时显示换页的bug link #36
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonczc committed Nov 9, 2021
1 parent e1c21d0 commit bb7c442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/PluginList/PluginList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default (props:PluginListInfo) => {
}
const Pager = ()=>(
<ProCard layout={"center"}>
<Pagination defaultCurrent={1} pageSize={20} total={count} onChange={setPage} showQuickJumper/>
<Pagination defaultCurrent={page} pageSize={20} total={count} onChange={setPage} showQuickJumper/>
</ProCard>
)
return (
Expand Down

0 comments on commit bb7c442

Please sign in to comment.