We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b63c3c2 commit 8f82033Copy full SHA for 8f82033
src/extension.ts
@@ -461,12 +461,12 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
461
}
462
463
// Prompt for issue description
464
- const description = await window.showInputBox({
+ const description = (await window.showInputBox({
465
title: l10n.t('Report Issue - Description'),
466
prompt: l10n.t('Describe the issue in more detail'),
467
placeHolder: l10n.t('Provide additional context about what happened...'),
468
ignoreFocusOut: true,
469
- }).trim();
+ })).trim();
470
471
if (!description) {
472
// User cancelled or provided empty description
0 commit comments