Add more spellChecks
This commit is contained in:
parent
0040deaa0a
commit
5911eb8033
1 changed files with 2 additions and 0 deletions
|
@ -816,6 +816,7 @@ function Compose({
|
||||||
disabled={uiState === 'loading'}
|
disabled={uiState === 'loading'}
|
||||||
class="spoiler-text-field"
|
class="spoiler-text-field"
|
||||||
lang={language}
|
lang={language}
|
||||||
|
spellCheck="true"
|
||||||
style={{
|
style={{
|
||||||
opacity: sensitive ? 1 : 0,
|
opacity: sensitive ? 1 : 0,
|
||||||
pointerEvents: sensitive ? 'auto' : 'none',
|
pointerEvents: sensitive ? 'auto' : 'none',
|
||||||
|
@ -1433,6 +1434,7 @@ function Poll({
|
||||||
maxlength={maxCharactersPerOption}
|
maxlength={maxCharactersPerOption}
|
||||||
placeholder={`Choice ${i + 1}`}
|
placeholder={`Choice ${i + 1}`}
|
||||||
lang={lang}
|
lang={lang}
|
||||||
|
spellCheck="true"
|
||||||
onInput={(e) => {
|
onInput={(e) => {
|
||||||
const { value } = e.target;
|
const { value } = e.target;
|
||||||
options[i] = value;
|
options[i] = value;
|
||||||
|
|
Loading…
Add table
Reference in a new issue