Skip to content

Commit fc5e2ce

Browse files
authored
Update checkout wording
1 parent cc8bb33 commit fc5e2ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

preview-src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ function updateCheckoutButton(isCheckedOut: boolean) {
246246
checkoutButton.disabled = isCheckedOut;
247247
checkoutMasterButton.disabled = false;
248248
const activeIcon = '<svg class="octicon octicon-check" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5L12 5z"></path></svg>';
249-
checkoutButton.innerHTML = isCheckedOut ? `${activeIcon} Checked Out` : `Check out`;
249+
checkoutButton.innerHTML = isCheckedOut ? `${activeIcon} Checked Out` : `Checkout`;
250250

251251
const backButton = (<HTMLButtonElement>document.getElementById(ElementIds.CheckoutDefaultBranch));
252252
if (isCheckedOut) {
@@ -284,4 +284,4 @@ function setTextArea() {
284284
if (pullRequest.pendingCommentText) {
285285
textArea.value = pullRequest.pendingCommentText;
286286
}
287-
}
287+
}

0 commit comments

Comments
 (0)