Skip to content

Commit

Permalink
Merge branch 'dev' into readme-changelog-1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip-Carneiro-KX committed Aug 13, 2024
2 parents 01a832e + dd466df commit e06104a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: v1.7.0
ignore:
"SNYK-JS-AXIOS-7361793":
- "*":
reason: "There is no fix until the moment"
expires: "2050-01-01T00:00:00.000Z"
10 changes: 7 additions & 3 deletions src/webview/components/kdbNewConnectionView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -696,13 +696,17 @@ export class KdbNewConnectionView extends LitElement {
return html`
<div class="col">
<div class="row">
<div class="col gap-0">${this.renderServerName(ServerType.KDB)}</div>
<div class="col gap-0">
${this.renderServerName(ServerType.KDB, true)}
</div>
</div>
<div class="row">
<div class="col gap-0">${this.renderConnAddress(ServerType.KDB)}</div>
<div class="col gap-0">
${this.renderConnAddress(ServerType.KDB, true)}
</div>
</div>
<div class="row">
<div class="col gap-0">${this.renderPortNumber()}</div>
<div class="col gap-0">${this.renderPortNumber(true)}</div>
</div>
</div>
`;
Expand Down

0 comments on commit e06104a

Please sign in to comment.