Skip to content

Commit

Permalink
fix issue with new connections
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip-Carneiro committed Nov 7, 2024
1 parent 91f5c58 commit 9e4d57f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/webview/components/kdbNewConnectionView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,8 @@ export class KdbNewConnectionView extends LitElement {
@click="${() => {
/* istanbul ignore next */
this.selectedTab = ConnectionType.BundledQ;
this.serverType = ServerType.KDB;
this.isBundledQ = true;
}}"
>Bundle q</sl-tab
>
Expand All @@ -678,6 +680,8 @@ export class KdbNewConnectionView extends LitElement {
?active="${live(this.selectedTab === ConnectionType.Kdb)}"
@click="${() => {
/* istanbul ignore next */
this.isBundledQ = false;
this.serverType = ServerType.KDB;
this.selectedTab = ConnectionType.Kdb;
}}"
>My q
Expand All @@ -690,6 +694,8 @@ export class KdbNewConnectionView extends LitElement {
)}"
@click="${() => {
/* istanbul ignore next */
this.isBundledQ = false;
this.serverType = ServerType.INSIGHTS;
this.selectedTab = ConnectionType.Insights;
}}"
>Insights connection
Expand Down

0 comments on commit 9e4d57f

Please sign in to comment.