-
Notifications
You must be signed in to change notification settings - Fork 112
feat(os): add refresh button on objects #20786
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
base: master
Are you sure you want to change the base?
Conversation
18cb4f4 to
9f8424e
Compare
9f8424e to
0f2979a
Compare
...er/apps/pci-object-storage/src/pages/object-storage/storage/swiftId/objects/Objects.page.tsx
Show resolved
Hide resolved
| export const useSwiftData = ( | ||
| queryOptions?: OptionsFor<typeof getSwiftStorage>, | ||
| ) => { |
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.
I don't see it used anywhere, is it needed ?
...nager/apps/pci-object-storage/src/pages/object-storage/storage/s3Id/objects/Objects.page.tsx
Show resolved
Hide resolved
| onRefresh: () => void; | ||
| isRefetching: boolean; |
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.
The props should align with common button semantics:
| onRefresh: () => void; | |
| isRefetching: boolean; | |
| onClick: () => void; | |
| isLoading: boolean; |
| export default function S3ObjectVersionList({ objects }: ObjectsListProps) { | ||
| export default function S3ObjectVersionList({ | ||
| objects, | ||
| onRefresh, |
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.
| onRefresh, | |
| onRefreshClicked, |
7627b2c to
76bf52a
Compare
ref: #DATATR-2633 Signed-off-by: Lionel Bueno <[email protected]>
76bf52a to
737933f
Compare
ref: #DATATR-2633
Description
Ticket Reference: #DATATR-2633
Additional Information