-
Notifications
You must be signed in to change notification settings - Fork 594
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
Create Milestone #3686
Create Milestone #3686
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.
Looks good, just a few questions.
src/github/pullRequestOverview.ts
Outdated
|
||
const inputBox = vscode.window.createInputBox(); | ||
inputBox.title = 'Create new milestone'; | ||
inputBox.placeholder = 'New milestone name'; |
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.
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.
Looks good!
}); | ||
|
||
quickPick.show(); | ||
quickPick.items = await getMilestoneOptions(this._folderRepositoryManager); |
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.
Just curious: why did you remove the quickPick.busy
setting?
When clicking on add milestone, a dropdown appears with all milestones. At the top right there is a plus which will create an inputbox where you can give the name of the new milestone. If you have already entered it and click on the plus (add), the inputbox appears with the text prefilled.