diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-01 15:16:58 +0900 |
---|---|---|
committer | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-01 15:16:58 +0900 |
commit | c13cf0ec85ccc6aec636ccd8b9f791559c1cd2f6 (patch) | |
tree | f962c38182d4f496c9a97c80d08504fde0b3aac2 /ext/search.html | |
parent | 7f7045dc58b06c9ec1375b13beb94fc9c03ebfa9 (diff) |
Satisfy no-implicit-button-type lint
Diffstat (limited to 'ext/search.html')
-rw-r--r-- | ext/search.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/search.html b/ext/search.html index be295937..460c0df8 100644 --- a/ext/search.html +++ b/ext/search.html @@ -50,8 +50,8 @@ </div> <div class="search-textbox-container"> <textarea id="search-textbox" class="scrollbar" placeholder="Input a term, expression, sentence, or block of text" autocomplete="off" lang="ja" autofocus></textarea> - <button id="search-back-button" class="search-button" hidden><span class="icon" data-icon="left-chevron"></span></button> - <button id="search-button" class="search-button"><span class="icon" data-icon="magnifying-glass"></span></button> + <button type="button" id="search-back-button" class="search-button" hidden><span class="icon" data-icon="left-chevron"></span></button> + <button type="button" id="search-button" class="search-button"><span class="icon" data-icon="magnifying-glass"></span></button> </div> </div> |