-
Notifications
You must be signed in to change notification settings - Fork 461
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
DRAFT PR - Edit Data #18533
base: main
Are you sure you want to change the base?
DRAFT PR - Edit Data #18533
Conversation
PR Changes
|
@@ -484,6 +484,11 @@ | |||
"when": "view == objectExplorer && viewItem =~ /\\btype=(AggregateFunction|PartitionFunction|ScalarValuedFunction|StoredProcedure|TableValuedFunction|View)\\b/", | |||
"group": "MS_SQL@4" | |||
}, | |||
{ | |||
"command": "mssql.editData", | |||
"when": "view == objectExplorer && viewItem =~ /\\btype=(Table)\\b/", |
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.
if you gate the feature behind the "enable preview features" flag as well, then it'll be easier to check in changes as they're ready. One thing we want to avoid is to wait until the feature is almost done, then have a huge PR because that's more difficult to effectively review.
super( | ||
context, | ||
"editData", | ||
data ?? { |
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 the initial state for EditDataWebViewState
, right? Probably good to have this situated with the definition for EditDataWebViewState.
No description provided.