Browse Source

Fixes lint warnings

main
Eric Amodio 2 years ago
parent
commit
e240207c04
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/webviews/apps/shared/components/search/search-input.ts

+ 2
- 2
src/webviews/apps/shared/components/search/search-input.ts View File

@ -443,7 +443,7 @@ export class SearchInput extends FASTElement {
debouncedUpdateHelpText = debounce(this.updateHelpText.bind(this), 200);
handleInputClick(e: MouseEvent) {
handleInputClick(_e: MouseEvent) {
this.updateHelpText();
}
@ -469,7 +469,7 @@ export class SearchInput extends FASTElement {
this.emitSearch();
}
handleKeyup(e: KeyboardEvent) {
handleKeyup(_e: KeyboardEvent) {
this.updateHelpText();
}

Loading…
Cancel
Save