Disable spell checking

This commit is contained in:
josdejong 2020-04-29 09:46:45 +02:00
parent b22e5fae81
commit 7646c1756b
1 changed files with 5 additions and 0 deletions

View File

@ -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}