Skip to content

Commit 2d85aa3

Browse files
committed
Show SQL Job Manager after successful installation
1 parent cd7b3e9 commit 2d85aa3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ export function setupConfig(context: ExtensionContext) {
3030
}
3131
});
3232

33-
const didUpdate = ServerComponent.checkForUpdate().then(result => {
33+
ServerComponent.checkForUpdate().then(result => {
3434
if (ServerComponent.isInstalled()) {
35+
JobManagerView.setVisible(true);
36+
3537
let newJob = Configuration.get<string>(`alwaysStartSQLJob`) || `ask`;
3638
if (typeof newJob !== `string`) newJob = `ask`; //For legacy settings where it used to be a boolean
3739

0 commit comments

Comments
 (0)