Ver a proveniência

Fixes lint warnings

main
Eric Amodio há 2 anos
ascendente
cometimento
e240207c04
1 ficheiros alterados com 2 adições e 2 eliminações
  1. +2
    -2
      src/webviews/apps/shared/components/search/search-input.ts

+ 2
- 2
src/webviews/apps/shared/components/search/search-input.ts Ver ficheiro

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

Carregando…
Cancelar
Guardar