Skip to content

Commit

Permalink
[Bug] User listing pagination is not working.
Browse files Browse the repository at this point in the history
  • Loading branch information
arshadmohammad committed Jan 11, 2025
1 parent f07fe97 commit 48f019f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seatunnel-ui/src/views/user-manage/list/use-table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export function useTable() {
userList({ ...params }).then(
(res: ResponseTable<Array<UserDetail> | []>) => {
state.tableData = res.data as any
state.totalPage = res.data.totalPage
state.totalPage = res.totalPage
state.loading = false
}
)
Expand Down

0 comments on commit 48f019f

Please sign in to comment.