Skip to content

Commit

Permalink
add explicit 'type' to search clear button
Browse files Browse the repository at this point in the history
  • Loading branch information
thostetler committed Aug 2, 2020
1 parent 5cf8409 commit 75b44cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/widgets/search_bar/templates/search_bar_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ <h2 class="sr-only">Search Bar to Enter New Query</h2>
<input type="text" class="form-control q hasbigquery" name="q" id="query-search-input" autofocus aria-label="Start typing a query here to begin an ADS Search" autocomplete="off" value={{currentQueryVal}}>


<button class="icon-clear s-clear-control"></button>
<button type="button" class="icon-clear s-clear-control"></button>

{{else}}
<input type="text" class="form-control q" name="q" autofocus id="query-search-input" aria-label="Start typing a query here to begin an ADS Search" autocomplete="off" value={{currentQueryVal}}>

<button class="icon-clear s-clear-control"></button>
<button type="button" class="icon-clear s-clear-control"></button>

{{/if}}
<span class="input-group-btn">
Expand Down

0 comments on commit 75b44cb

Please sign in to comment.