Disable canSelectFolders in markdown link inserter (#164636)

Fixes #164549
This commit is contained in:
Matt Bierner 2022-10-25 12:01:08 -07:00 committed by GitHub
parent b38691f611
commit 21431fce38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ export class InsertLinkFromWorkspace implements Command {
resources ??= await vscode.window.showOpenDialog({
canSelectFiles: true,
canSelectFolders: true,
canSelectFolders: false,
canSelectMany: true,
openLabel: localize('insertLink.openLabel', "Insert link"),
title: localize('insertLink.title', "Insert link"),