瀏覽代碼

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

Loading…
取消
儲存