Skip to content

Commit 61a5413

Browse files
committed
Update progress title in connection notification to use dynamic name from options
Signed-off-by: worksofliam <[email protected]>
1 parent 38993af commit 61a5413

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Instance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default class Instance {
8181
return withContext("code-for-ibmi:connecting", async () => {
8282
while (true) {
8383
let customError: string|undefined;
84-
await vscode.window.withProgress({location: vscode.ProgressLocation.Notification, title: `Code for IBM i`, cancellable: true}, async (p, cancelToken) => {
84+
await vscode.window.withProgress({location: vscode.ProgressLocation.Notification, title: options.data.name, cancellable: true}, async (p, cancelToken) => {
8585
try {
8686
const cancelEmitter = new EventEmitter();
8787

0 commit comments

Comments
 (0)