mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
fix: Enable spellcheck on all textareas
This commit is contained in:
parent
71b4fd32cc
commit
adf60c0c74
8 changed files with 0 additions and 8 deletions
|
@ -166,7 +166,6 @@ const AddCard = React.memo(({ isOpened, className, onCreate, onClose }) => {
|
||||||
placeholder={t('common.enterCardTitle')}
|
placeholder={t('common.enterCardTitle')}
|
||||||
maxLength={1024}
|
maxLength={1024}
|
||||||
minRows={3}
|
minRows={3}
|
||||||
spellCheck={false}
|
|
||||||
className={styles.field}
|
className={styles.field}
|
||||||
onKeyDown={handleFieldKeyDown}
|
onKeyDown={handleFieldKeyDown}
|
||||||
onChange={handleFieldChange}
|
onChange={handleFieldChange}
|
||||||
|
|
|
@ -96,7 +96,6 @@ const EditName = React.memo(({ cardId, onClose }) => {
|
||||||
maxLength={1024}
|
maxLength={1024}
|
||||||
minRows={3}
|
minRows={3}
|
||||||
maxRows={8}
|
maxRows={8}
|
||||||
spellCheck={false}
|
|
||||||
className={styles.field}
|
className={styles.field}
|
||||||
onKeyDown={handleFieldKeyDown}
|
onKeyDown={handleFieldKeyDown}
|
||||||
onChange={handleFieldChange}
|
onChange={handleFieldChange}
|
||||||
|
|
|
@ -82,7 +82,6 @@ const NameField = React.memo(({ defaultValue, size, onUpdate }) => {
|
||||||
as={TextareaAutosize}
|
as={TextareaAutosize}
|
||||||
value={value}
|
value={value}
|
||||||
maxLength={1024}
|
maxLength={1024}
|
||||||
spellCheck={false}
|
|
||||||
className={classNames(styles.field, styles[`field${upperFirst(size)}`])}
|
className={classNames(styles.field, styles[`field${upperFirst(size)}`])}
|
||||||
onFocus={handleFocus}
|
onFocus={handleFocus}
|
||||||
onKeyDown={handleKeyDown}
|
onKeyDown={handleKeyDown}
|
||||||
|
|
|
@ -76,7 +76,6 @@ const EditName = React.memo(({ listId, onClose }) => {
|
||||||
as={TextareaAutosize}
|
as={TextareaAutosize}
|
||||||
value={value}
|
value={value}
|
||||||
maxLength={128}
|
maxLength={128}
|
||||||
spellCheck={false}
|
|
||||||
className={styles.field}
|
className={styles.field}
|
||||||
onClick={handleFieldClick}
|
onClick={handleFieldClick}
|
||||||
onKeyDown={handleFieldKeyDown}
|
onKeyDown={handleFieldKeyDown}
|
||||||
|
|
|
@ -129,7 +129,6 @@ const AddProjectModal = React.memo(() => {
|
||||||
value={data.description}
|
value={data.description}
|
||||||
maxLength={1024}
|
maxLength={1024}
|
||||||
minRows={2}
|
minRows={2}
|
||||||
spellCheck={false}
|
|
||||||
className={styles.field}
|
className={styles.field}
|
||||||
onKeyDown={handleDescriptionKeyDown}
|
onKeyDown={handleDescriptionKeyDown}
|
||||||
onChange={handleFieldChange}
|
onChange={handleFieldChange}
|
||||||
|
|
|
@ -89,7 +89,6 @@ const EditInformation = React.memo(() => {
|
||||||
value={data.description}
|
value={data.description}
|
||||||
maxLength={1024}
|
maxLength={1024}
|
||||||
minRows={2}
|
minRows={2}
|
||||||
spellCheck={false}
|
|
||||||
className={styles.field}
|
className={styles.field}
|
||||||
onKeyDown={handleDescriptionKeyDown}
|
onKeyDown={handleDescriptionKeyDown}
|
||||||
onChange={handleFieldChange}
|
onChange={handleFieldChange}
|
||||||
|
|
|
@ -168,7 +168,6 @@ const AddTask = React.memo(({ children, taskListId, isOpened, onClose }) => {
|
||||||
placeholder={t('common.enterTaskDescription')}
|
placeholder={t('common.enterTaskDescription')}
|
||||||
maxLength={1024}
|
maxLength={1024}
|
||||||
minRows={2}
|
minRows={2}
|
||||||
spellCheck={false}
|
|
||||||
className={styles.field}
|
className={styles.field}
|
||||||
onKeyDown={handleFieldKeyDown}
|
onKeyDown={handleFieldKeyDown}
|
||||||
onChange={handleFieldChange}
|
onChange={handleFieldChange}
|
||||||
|
|
|
@ -79,7 +79,6 @@ const EditName = React.memo(({ taskId, onClose }) => {
|
||||||
value={value}
|
value={value}
|
||||||
maxLength={1024}
|
maxLength={1024}
|
||||||
minRows={2}
|
minRows={2}
|
||||||
spellCheck={false}
|
|
||||||
className={styles.field}
|
className={styles.field}
|
||||||
onKeyDown={handleFieldKeyDown}
|
onKeyDown={handleFieldKeyDown}
|
||||||
onChange={handleFieldChange}
|
onChange={handleFieldChange}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue