-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
feat: create return reason #8516
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
5 Skipped Deployments
|
@@ -52,6 +52,10 @@ export interface DataTableRootProps<TData> { | |||
* Whether the table is empty due to no results from the active query | |||
*/ | |||
noResults?: boolean | |||
/** | |||
* Whether to display the tables header |
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.
TBH I'm not a big fan of "negative" naming for props, but wanted to stay consistent with other props in this component
ddb8952
to
0eea0ec
Compare
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.
Nice, LGTM
@@ -264,6 +264,14 @@ export const useGlobalShortcuts = () => { | |||
type: "settingShortcut", | |||
to: "/settings/locations", | |||
}, | |||
{ | |||
keys: { | |||
Mac: ["G", ",", "M"], |
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.
question: Would this be more fitting? Typically, the keyboard shortcut is coupled with the resource name
Mac: ["G", ",", "M"], | |
Mac: ["G", ",", "R"], |
Closes CC-305