ソースを参照

Removes redundant folder prompt

main
Ramin Tadayon 1年前
コミット
995dd5f272
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 79D60DDE3DFB95F5
1個のファイルの変更0行の追加11行の削除
  1. +0
    -11
      src/plus/workspaces/workspacesService.ts

+ 0
- 11
src/plus/workspaces/workspacesService.ts ファイルの表示

@ -262,17 +262,6 @@ export class WorkspacesService implements Disposable {
if (workspace == null) return;
if (workspace.repositories == null || workspace.repositories.length === 0) return;
const parentUri = (
await window.showOpenDialog({
title: `Choose a folder containing the repositories in this workspace`,
canSelectFiles: false,
canSelectFolders: true,
canSelectMany: false,
})
)?.[0];
if (parentUri == null || cancellation?.isCancellationRequested) return;
const foundRepos = await this.getRepositoriesInParentFolder(cancellation);
if (foundRepos == null || foundRepos.length === 0 || cancellation?.isCancellationRequested) return;

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