We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82a4923 commit a155079Copy full SHA for a155079
client/src/config_paths.ts
@@ -77,7 +77,7 @@ export class ApprovedConfigPaths {
77
}
78
79
const allow = "Allow";
80
- const deny = "Don't Allow";
+ const deny = "Deny";
81
const result = await vscode.window.showWarningMessage(
82
`A workspace setting wants to run a custom Deno executable: ${path}`,
83
allow,
client/src/util.ts
@@ -41,7 +41,7 @@ export async function getDenoCommandPath(approvedPaths: ApprovedConfigPaths) {
41
// check for approval if using a workspace-configured path
42
const approved = await approvedPaths.promptForApproval(pathInfo);
43
if (!approved) {
44
- return undefined;
+ return await getDefaultDenoCommand();
45
46
47
const command = pathInfo?.path;
0 commit comments