-
Notifications
You must be signed in to change notification settings - Fork 909
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
GenerateToNotebook and Deploy buttons for Notebook Wizards #12656
Conversation
extensions/resource-deployment/src/ui/notebookWizard/notebookWizard.ts
Outdated
Show resolved
Hide resolved
taskName?: string; | ||
type?: DeploymentType; | ||
actionText?: string; | ||
/** | ||
* done button attributes. |
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.
extra spaces here
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 do not see the extra space.
pages: NotebookWizardPageInfo[] | ||
} | ||
|
||
export interface WizardInfoBase extends FieldInfoBase { | ||
/** | ||
* the taskName to use when running the notebook as a background task. The default value is the @see title of the wizard. |
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 get rid of this now right?
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.
Will check to ensure none of subclasses are using it.
* enable userChooses how to run notebook * arc ext changes * nb fixes * working version * revert unneeded changes * fix comments * Update interfaces.ts * fix comments * fix comments * fix comments * runAllCells instead of background execute * pr feedback * PR feedback * pr feedback * arc ext changes for new WizardInfo syntax * fix doc comments * pr feedback
This change adds a feature to support both ScriptToNotebook and Deploy buttons in a Notebook Wizard. The Deploy button now runs the notebook instead of executing the notebook using azdata in a new process.
Testing:
This PR fixes #12577