Procházet zdrojové kódy

Fixes lint warnings

main
Eric Amodio před 2 roky
rodič
revize
e240207c04
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      src/webviews/apps/shared/components/search/search-input.ts

+ 2
- 2
src/webviews/apps/shared/components/search/search-input.ts Zobrazit soubor

@ -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();
}

Načítá se…
Zrušit
Uložit