Skip to content

Commit

Permalink
add ignore where is needed
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip-Carneiro committed Oct 1, 2024
1 parent ec3918b commit 0981cf3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/webview/components/kdbDataSourceView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ export class KdbDataSourceView extends LitElement {
<vscode-checkbox
.checked="${this.rowLimit}"
@change="${(event: Event) => {
/* istanbul ignore next */
this.rowLimit = (event.target as HTMLInputElement).checked;
this.requestChange();
}}"></vscode-checkbox>
Expand All @@ -262,6 +263,7 @@ export class KdbDataSourceView extends LitElement {
class="text-field input-number"
.value="${live(this.rowLimitCount)}"
@input="${(event: Event) => {
/* istanbul ignore next */
this.rowLimitCount = (event.target as HTMLInputElement).value;
this.requestChange();
}}">
Expand All @@ -275,6 +277,7 @@ export class KdbDataSourceView extends LitElement {
value="first"
.checked="${!this.isRowLimitLast}"
@change="${(event: Event) => {
/* istanbul ignore next */
if ((event.target as HTMLInputElement).checked) {
this.isRowLimitLast = false;
this.requestChange();
Expand All @@ -289,6 +292,7 @@ export class KdbDataSourceView extends LitElement {
value="last"
.checked="${this.isRowLimitLast}"
@change="${(event: Event) => {
/* istanbul ignore next */
if ((event.target as HTMLInputElement).checked) {
this.isRowLimitLast = true;
this.requestChange();
Expand Down

0 comments on commit 0981cf3

Please sign in to comment.