소스 검색

Fixes lint warnings

main
Eric Amodio 2 년 전
부모
커밋
e240207c04
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/webviews/apps/shared/components/search/search-input.ts

+ 2
- 2
src/webviews/apps/shared/components/search/search-input.ts 파일 보기

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

불러오는 중...
취소
저장