Skip to content

Commit

Permalink
Merge pull request #301 from KxSystems/multi-fixes
Browse files Browse the repository at this point in the history
KXI-45462: Show only insights connections for python workbooks
  • Loading branch information
ecmel authored May 15, 2024
2 parents 2a3f65a + 299bbb5 commit d091609
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/workspaceCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,9 @@ export function getConnectionForUri(uri: Uri) {

export async function pickConnection(uri: Uri) {
const server = getServerForUri(uri);
const servers = isPython(uri) ? getInsightsServers() : getServers();

let picked = await window.showQuickPick(["(none)", ...getServers()], {
let picked = await window.showQuickPick(["(none)", ...servers], {
title: "Choose a connection",
placeHolder: server,
});
Expand Down

0 comments on commit d091609

Please sign in to comment.