Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
litvinovg committed Sep 15, 2023
1 parent 0af5c59 commit 59eada8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions webapp/src/main/webapp/themes/nemo/templates/menu.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<input
type="text"
class="form-control"
id="filter_input_querytext"
name="querytext"
placeholder="${i18n().search_form}"
autocapitalize="off"
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/main/webapp/themes/nemo/templates/search.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<form id="search-form" action="${urls.search}" name="search" role="search" accept-charset="UTF-8" method="GET">
<div id="search-field">
<input type="text" name="querytext" class="search-vivo" value="${querytext!}" autocapitalize="off" />
<input type="text" name="querytext" id="filter_input_querytext" class="search-vivo" value="${querytext!}" autocapitalize="off" />
<input type="submit" value="${i18n().search_button}" class="search">
</div>
</form>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<form id="search-form" action="${urls.search}" name="search" role="search" accept-charset="UTF-8" method="GET">
<div id="search-field">
<input type="text" name="querytext" class="search-vivo" value="${querytext!}" autocapitalize="off" />
<input type="text" id="filter_input_querytext" name="querytext" class="search-vivo" value="${querytext!}" autocapitalize="off" />
<input type="submit" value="${i18n().search_button}" class="search">
</div>
</form>
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/main/webapp/themes/wilma/templates/search.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<form id="search-form" action="${urls.search}" name="search" role="search" accept-charset="UTF-8" method="GET">
<div id="search-field">
<input type="text" name="querytext" class="search-vivo" value="${querytext!}" autocapitalize="off" />
<input type="text" id="filter_input_querytext" name="querytext" class="search-vivo" value="${querytext!}" autocapitalize="off" />
<input type="submit" value="${i18n().search_button}" class="search">
</div>
</form>
Expand Down

0 comments on commit 59eada8

Please sign in to comment.