-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UIBULKED-246 Displaying and paginating through retrieved records #463
Conversation
Displaying and paginating through retrieved records
# Conflicts: # CHANGELOG.md # src/constants/core.js # src/hooks/api/useRecordsPreview.js
@@ -0,0 +1,14 @@ | |||
import { useState, useCallback } from 'react'; | |||
|
|||
export const usePagination = ({ limit, offset }) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is not covered by tests
import { EDITING_STEPS } from '../constants'; | ||
import { RootContext } from '../context/RootContext'; | ||
|
||
export const useBulkOperationStats = ({ bulkDetails, step }) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is not covered by tests
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
Previously, only 10 records were visible at all steps of bulk-edit. After this PR is merged, we will be able to see pagination at every step. Ref: UIBULKED-246
UPLOAD STEP
UPDATE STEP
COMMIT STEP