Disable spell checking
This commit is contained in:
parent
b22e5fae81
commit
7646c1756b
|
@ -144,6 +144,7 @@
|
||||||
|
|
||||||
.contents {
|
.contents {
|
||||||
padding-left: $line-height ; // must be the same as the width of the expand button
|
padding-left: $line-height ; // must be the same as the width of the expand button
|
||||||
|
padding-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
|
@ -289,6 +290,7 @@
|
||||||
<div
|
<div
|
||||||
class="key {searchResult && searchResult[SEARCH_PROPERTY] ? 'search' : ''}"
|
class="key {searchResult && searchResult[SEARCH_PROPERTY] ? 'search' : ''}"
|
||||||
contenteditable="true"
|
contenteditable="true"
|
||||||
|
spellcheck="false"
|
||||||
on:input={handleKeyInput}
|
on:input={handleKeyInput}
|
||||||
>
|
>
|
||||||
{escapedKey}
|
{escapedKey}
|
||||||
|
@ -337,6 +339,7 @@
|
||||||
<div
|
<div
|
||||||
class="key {searchResult && searchResult[SEARCH_PROPERTY] ? 'search' : ''}"
|
class="key {searchResult && searchResult[SEARCH_PROPERTY] ? 'search' : ''}"
|
||||||
contenteditable="true"
|
contenteditable="true"
|
||||||
|
spellcheck="false"
|
||||||
on:input={handleKeyInput}
|
on:input={handleKeyInput}
|
||||||
>
|
>
|
||||||
{escapedKey}
|
{escapedKey}
|
||||||
|
@ -373,6 +376,7 @@
|
||||||
<div
|
<div
|
||||||
class="key {searchResult && searchResult[SEARCH_PROPERTY] ? 'search' : ''}"
|
class="key {searchResult && searchResult[SEARCH_PROPERTY] ? 'search' : ''}"
|
||||||
contenteditable="true"
|
contenteditable="true"
|
||||||
|
spellcheck="false"
|
||||||
on:input={handleKeyInput}
|
on:input={handleKeyInput}
|
||||||
>
|
>
|
||||||
{escapedKey}
|
{escapedKey}
|
||||||
|
@ -382,6 +386,7 @@
|
||||||
<div
|
<div
|
||||||
class={valueClass}
|
class={valueClass}
|
||||||
contenteditable="true"
|
contenteditable="true"
|
||||||
|
spellcheck="false"
|
||||||
on:input={handleValueInput}
|
on:input={handleValueInput}
|
||||||
on:click={handleValueClick}
|
on:click={handleValueClick}
|
||||||
on:keydown={handleValueKeyDown}
|
on:keydown={handleValueKeyDown}
|
||||||
|
|
Loading…
Reference in New Issue