disable spellcheck
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
placeholder="{{translate 'Search'}}"
|
||||
data-name="quick-search"
|
||||
class="form-control"
|
||||
spellcheck="false"
|
||||
>
|
||||
</div>
|
||||
<table class="table table-hover scopes-table">
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
placeholder="{{translate 'Search'}}"
|
||||
data-name="quick-search"
|
||||
class="form-control"
|
||||
spellcheck="false"
|
||||
>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -4,8 +4,14 @@
|
||||
<div class="row">
|
||||
<div class="col-md-7">
|
||||
<div class="admin-search-container">
|
||||
<input type="text" maxlength="64" placeholder="{{translate 'Search'}}"
|
||||
data-name="quick-search" class="form-control">
|
||||
<input
|
||||
type="text"
|
||||
maxlength="64"
|
||||
placeholder="{{translate 'Search'}}"
|
||||
data-name="quick-search"
|
||||
class="form-control"
|
||||
spellcheck="false"
|
||||
>
|
||||
</div>
|
||||
<div class="admin-tables-container">
|
||||
{{#each panelDataList}}
|
||||
@@ -47,4 +53,4 @@
|
||||
{{/unless}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -10,7 +10,10 @@
|
||||
<div class="field">
|
||||
<select data-name="language" class="form-control">
|
||||
{{#each languageList}}
|
||||
<option value="{{this}}"{{#ifEqual this ../language}} selected{{/ifEqual}}>{{translateOption this field='language'}}</option>
|
||||
<option
|
||||
value="{{this}}"
|
||||
{{#ifEqual this ../language}} selected{{/ifEqual}}
|
||||
>{{translateOption this field='language'}}</option>
|
||||
{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
@@ -22,7 +25,11 @@
|
||||
<ul class="list-unstyled" style="overflow-x: hidden;">
|
||||
{{#each scopeList}}
|
||||
<li>
|
||||
<button class="btn btn-link" data-name="{{./this}}" data-action="selectScope">{{translate this category='scopeNames'}}</button>
|
||||
<button
|
||||
class="btn btn-link"
|
||||
data-name="{{./this}}"
|
||||
data-action="selectScope"
|
||||
>{{translate this category='scopeNames'}}</button>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
placeholder="{{translate 'Search'}}"
|
||||
data-name="quick-search"
|
||||
class="form-control"
|
||||
spellcheck="false"
|
||||
>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
@@ -1,7 +1,17 @@
|
||||
<div class="input-group has-feedback">
|
||||
<input type="text" class="form-control global-search-input" placeholder="{{translate 'Search'}}" autocomplete="espo-global-search">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control global-search-input"
|
||||
placeholder="{{translate 'Search'}}"
|
||||
autocomplete="espo-global-search"
|
||||
spellcheck="false"
|
||||
>
|
||||
<div class="input-group-btn">
|
||||
<a class="btn btn-link global-search-button" data-action="search" title="{{translate 'Search'}}"><span class="fas fa-search"></span></a>
|
||||
<a
|
||||
class="btn btn-link global-search-button"
|
||||
data-action="search"
|
||||
title="{{translate 'Search'}}"
|
||||
><span class="fas fa-search"></span></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="global-search-panel-container"></div>
|
||||
|
||||
@@ -14,7 +14,6 @@
|
||||
<span class="caret"></span>
|
||||
</button>
|
||||
<ul class="dropdown-menu pull-left filter-menu">
|
||||
|
||||
<li>
|
||||
<a
|
||||
class="preset"
|
||||
@@ -72,6 +71,7 @@
|
||||
value="{{textFilter}}"
|
||||
tabindex="0"
|
||||
autocomplete="espo-text-search"
|
||||
spellcheck="false"
|
||||
>
|
||||
{{/unless}}
|
||||
<div class="input-group-btn">
|
||||
|
||||
Reference in New Issue
Block a user