diff --git a/src/views/nodes/compareResultsNode.ts b/src/views/nodes/compareResultsNode.ts index f99e550..3b4e105 100644 --- a/src/views/nodes/compareResultsNode.ts +++ b/src/views/nodes/compareResultsNode.ts @@ -47,7 +47,7 @@ export class CompareResultsNode extends SubscribeableViewNode { this.view, this, this.uri.repoPath!, - '? commits', + 'commits', this.getCommitsQuery.bind(this), true, false diff --git a/src/views/nodes/resultsFilesNode.ts b/src/views/nodes/resultsFilesNode.ts index ef000f4..542019d 100644 --- a/src/views/nodes/resultsFilesNode.ts +++ b/src/views/nodes/resultsFilesNode.ts @@ -70,7 +70,7 @@ export class ResultsFilesNode extends ViewNode { if (this._querying) { // Need to use Collapsed before we have results or the item won't show up in the view until the children are awaited state = TreeItemCollapsibleState.Collapsed; - label = '? files changed'; + label = 'files changed'; this.getFilesQueryResults().then(_ => { this._querying = false; diff --git a/src/views/searchView.ts b/src/views/searchView.ts index b4417c5..37769a1 100644 --- a/src/views/searchView.ts +++ b/src/views/searchView.ts @@ -124,7 +124,7 @@ export class SearchView extends ViewBase { repoPath, search, searchBy, - `Searching for ${typeof options.label === 'string' ? options.label : options.label.label}`, + `results for ${typeof options.label === 'string' ? options.label : options.label.label}`, searchQueryFn, true )