-
Notifications
You must be signed in to change notification settings - Fork 1
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
add dataSet actions in project page #475
add dataSet actions in project page #475
Conversation
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 tested the changes and they work.
Earlier I did merge a minor PR because it did not need further review and I think this may have caused that this PR now has some conflicts. Could you please fix them whenever you have the time?
Thanks!
…ea/dataset-configuration into feature/dataset-actions
Done @MiquelAdell |
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.
All good, just two minor comments that need not my further approval, so approving now.
@@ -0,0 +1,88 @@ | |||
import React from "react"; |
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.
[global] after a "yarn localize" I see changes for the i18n files.
) | ||
); | ||
|
||
return <ObjectsTable {...tableConfig} />; | ||
const reloadProjects = React.useCallback((isCancelAction: 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.
minor, no need to change it, but as a general rule, naked boolean arguments are not declarative when used: reloadProjects(false)
. Instead: reloadProjects({ isCancelAction: false })
📌 References
📝 Implementation
📹 Screenshots/Screen capture
🔥 Notes to the tester
#8696rgk6z