We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd7b3e9 commit 2d85aa3Copy full SHA for 2d85aa3
src/config.ts
@@ -30,8 +30,10 @@ export function setupConfig(context: ExtensionContext) {
30
}
31
});
32
33
- const didUpdate = ServerComponent.checkForUpdate().then(result => {
+ ServerComponent.checkForUpdate().then(result => {
34
if (ServerComponent.isInstalled()) {
35
+ JobManagerView.setVisible(true);
36
+
37
let newJob = Configuration.get<string>(`alwaysStartSQLJob`) || `ask`;
38
if (typeof newJob !== `string`) newJob = `ask`; //For legacy settings where it used to be a boolean
39
0 commit comments