mirror of
https://github.com/plebbit/seedit.git
synced 2026-06-12 01:56:10 -04:00
fix(submit): don't spellcheck and autocorrect in url input and community address input
This commit is contained in:
@@ -196,6 +196,9 @@ const Submit = () => {
|
||||
<input
|
||||
className={`${styles.input} ${styles.inputUrl}`}
|
||||
type='text'
|
||||
autoCorrect='off'
|
||||
autoComplete='off'
|
||||
spellCheck='false'
|
||||
ref={linkRef}
|
||||
onChange={(e) => {
|
||||
setSubmitStore({ link: e.target.value });
|
||||
@@ -237,6 +240,9 @@ const Submit = () => {
|
||||
className={`${styles.input} ${styles.inputCommunity}`}
|
||||
type='text'
|
||||
placeholder={`"community.eth" ${t('or')} "12D3KooW..."`}
|
||||
autoCorrect='off'
|
||||
autoComplete='off'
|
||||
spellCheck='false'
|
||||
defaultValue={selectedSubplebbit ? paramsSubplebbitAddress : undefined}
|
||||
ref={subplebbitAddressRef}
|
||||
onChange={(e) => {
|
||||
|
||||
Reference in New Issue
Block a user