-
Notifications
You must be signed in to change notification settings - Fork 2.8k
console: fix default option selected when cloning row in data browser (close #5340) #5364
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
Conversation
|
Beep boop! 🤖 Hey @ShahAnuj2610, thanks for your PR! One of my human friends will review this PR and get back to you as soon as possible. Stay awesome! 😎 |
|
Review app for commit dcdb515 deployed to Heroku: https://hge-ci-pull-5364.herokuapp.com |
1 similar comment
|
Review app for commit dcdb515 deployed to Heroku: https://hge-ci-pull-5364.herokuapp.com |
|
Review app for commit b378f8b deployed to Heroku: https://hge-ci-pull-5364.herokuapp.com |
soorajshankar
left a comment
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.
Thanks @ShahAnuj2610 for the PR!
Left a few code review comments, please fix that.
console/src/components/Services/Data/Common/Components/TableRow.tsx
Outdated
Show resolved
Hide resolved
|
Review app for commit 86b4810 deployed to Heroku: https://hge-ci-pull-5364.herokuapp.com |
…w.tsx Co-authored-by: Sooraj <soorajshankar@users.noreply.github.com>
| !['uuid', 'timestamptz'].includes(col.udt_name): | ||
| columnValueType = 'value'; | ||
| break; | ||
| case !isEditing && (isIdentity || hasDefault || isGenerated): |
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.
We can simplify it.
Instead of adding another case we can handle it along with the first case as:
case !isEditing && !clone && (isIdentity || hasDefault || isGenerated):
Notice added !clone part.
|
Hi @ShahAnuj2610! I hope you're doing well. I just wanted to ask if you plan to continue working on this PR? 🙂 |
Hey @beerose. I'm a little busy these days. I'll make sure to review the changes requested and get back. |
|
Deploy preview for hasura-docs ready! Built with commit bd1a204 |
beerose
left a comment
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.
Console changes.
tirumaraiselvan
left a comment
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.
no cl required
|
Beep boop! 🤖 Awesome work @ShahAnuj2610! All of us at Hasura ❤️ what you did. Thanks again 🤗 |
close #5340
Changelog
CHANGELOG.mdis updated with user-facing content relevant to this PR. If no changelog is required, then add theno-changelog-requiredlabel.Affected components
Solution and Design
Steps to test and verify
Limitations, known bugs & workarounds