ソースを参照

Removes `Searching` and `?` prefix while searching

main
Eric Amodio 5年前
コミット
3780b3956e
3個のファイルの変更3行の追加3行の削除
  1. +1
    -1
      src/views/nodes/compareResultsNode.ts
  2. +1
    -1
      src/views/nodes/resultsFilesNode.ts
  3. +1
    -1
      src/views/searchView.ts

+ 1
- 1
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

+ 1
- 1
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;

+ 1
- 1
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
)

読み込み中…
キャンセル
保存