Skip to content

Commit af5a35f

Browse files
committed
chore: prefill connection wizard with appropriate defaults
1 parent ab53f87 commit af5a35f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/extension.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ async function runConfigureConnectionWizard(
245245
const userInput = await vscode.window.showInputBox({
246246
title: `Configure '${alias}'`,
247247
prompt: "Oracle user",
248-
value: existingProfile?.user ?? "",
248+
value: existingProfile?.user ?? "imijdbManager",
249249
ignoreFocusOut: true,
250250
validateInput: (value) =>
251251
value.trim().length > 0 ? undefined : "User is required."
@@ -257,8 +257,8 @@ async function runConfigureConnectionWizard(
257257

258258
const connectStringInput = await vscode.window.showInputBox({
259259
title: `Configure '${alias}'`,
260-
prompt: "Connect string (example: localhost:1521/XEPDB1)",
261-
value: existingProfile?.connectString ?? "",
260+
prompt: "Connect string (example: localhost:1521/XE)",
261+
value: existingProfile?.connectString ?? "localhost:1521/XE",
262262
ignoreFocusOut: true,
263263
validateInput: (value) =>
264264
value.trim().length > 0 ? undefined : "Connect string is required."

0 commit comments

Comments
 (0)