Skip to content

Commit

Permalink
create: Capitalize 'Remove Milestone' (#5208)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbons authored Aug 29, 2023
1 parent 97f1ecb commit 69a3e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github/quickPicks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ function isMilestoneQuickPickItem(x: vscode.QuickPickItem | MilestoneQuickPickIt
export async function getMilestoneFromQuickPick(folderRepositoryManager: FolderRepositoryManager, githubRepository: GitHubRepository, currentMilestone: IMilestone | undefined, callback: (milestone: IMilestone | undefined) => Promise<void>): Promise<void> {
try {
const removeMilestoneItem: vscode.QuickPickItem = {
label: vscode.l10n.t('Remove milestone')
label: vscode.l10n.t('Remove Milestone')
};
let selectedItem: vscode.QuickPickItem | undefined;
async function getMilestoneOptions(): Promise<(MilestoneQuickPickItem | vscode.QuickPickItem)[]> {
Expand Down

0 comments on commit 69a3e04

Please sign in to comment.