diff --git a/package.json b/package.json index 64553ec..84a8870 100644 --- a/package.json +++ b/package.json @@ -2308,7 +2308,7 @@ "properties": { "repository": { "type": "string", - "markdownDescription": "Specifies the format of a respository url for the custom remote service\n\nAvailable tokens\\\n`${repo}` — repository path" + "markdownDescription": "Specifies the format of a repository url for the custom remote service\n\nAvailable tokens\\\n`${repo}` — repository path" }, "branches": { "type": "string", @@ -3451,7 +3451,7 @@ } }, { - "id": "gitlens.unpushlishedChangesIconColor", + "id": "gitlens.unpublishedChangesIconColor", "description": "Specifies the icon color of unpublished changes in the GitLens views", "defaults": { "dark": "#35b15e", diff --git a/src/constants.ts b/src/constants.ts index 05651e1..bb8a3f9 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -39,7 +39,7 @@ export const enum Colors { OpenAutolinkedIssueIconColor = 'gitlens.openAutolinkedIssueIconColor', OpenPullRequestIconColor = 'gitlens.openPullRequestIconColor', MergedPullRequestIconColor = 'gitlens.mergedPullRequestIconColor', - UnpushlishedChangesIconColor = 'gitlens.unpushlishedChangesIconColor', + UnpublishedChangesIconColor = 'gitlens.unpublishedChangesIconColor', UnpublishedCommitIconColor = 'gitlens.unpublishedCommitIconColor', UnpulledChangesIconColor = 'gitlens.unpulledChangesIconColor', } diff --git a/src/views/nodes/branchNode.ts b/src/views/nodes/branchNode.ts index 58b22c8..968f56b 100644 --- a/src/views/nodes/branchNode.ts +++ b/src/views/nodes/branchNode.ts @@ -388,7 +388,7 @@ export class BranchNode if (this.branch.state.ahead || this.branch.state.behind) { if (this.branch.state.ahead) { contextValue += '+ahead'; - color = new ThemeColor(Colors.UnpushlishedChangesIconColor); + color = new ThemeColor(Colors.UnpublishedChangesIconColor); iconSuffix = '-green'; } if (this.branch.state.behind) { diff --git a/src/views/nodes/branchTrackingStatusNode.ts b/src/views/nodes/branchTrackingStatusNode.ts index ab82dc7..b4d1d63 100644 --- a/src/views/nodes/branchTrackingStatusNode.ts +++ b/src/views/nodes/branchTrackingStatusNode.ts @@ -179,7 +179,7 @@ export class BranchTrackingStatusNode extends ViewNode impleme contextValue = this.root ? ContextValues.StatusAheadOfUpstream : ContextValues.BranchStatusAheadOfUpstream; - icon = new ThemeIcon('cloud-upload', new ThemeColor(Colors.UnpushlishedChangesIconColor)); + icon = new ThemeIcon('cloud-upload', new ThemeColor(Colors.UnpublishedChangesIconColor)); break; } @@ -237,7 +237,7 @@ export class BranchTrackingStatusNode extends ViewNode impleme contextValue = this.root ? ContextValues.StatusNoUpstream : ContextValues.BranchStatusNoUpstream; icon = new ThemeIcon( 'cloud-upload', - remotes.length ? new ThemeColor(Colors.UnpushlishedChangesIconColor) : undefined, + remotes.length ? new ThemeColor(Colors.UnpublishedChangesIconColor) : undefined, ); break;