diff --git a/client/src/components/cards/AddCard/AddCard.jsx b/client/src/components/cards/AddCard/AddCard.jsx index 1778d4cb..6dd78b09 100644 --- a/client/src/components/cards/AddCard/AddCard.jsx +++ b/client/src/components/cards/AddCard/AddCard.jsx @@ -166,7 +166,6 @@ const AddCard = React.memo(({ isOpened, className, onCreate, onClose }) => { placeholder={t('common.enterCardTitle')} maxLength={1024} minRows={3} - spellCheck={false} className={styles.field} onKeyDown={handleFieldKeyDown} onChange={handleFieldChange} diff --git a/client/src/components/cards/Card/EditName.jsx b/client/src/components/cards/Card/EditName.jsx index e9939b5e..ae73ebe7 100644 --- a/client/src/components/cards/Card/EditName.jsx +++ b/client/src/components/cards/Card/EditName.jsx @@ -96,7 +96,6 @@ const EditName = React.memo(({ cardId, onClose }) => { maxLength={1024} minRows={3} maxRows={8} - spellCheck={false} className={styles.field} onKeyDown={handleFieldKeyDown} onChange={handleFieldChange} diff --git a/client/src/components/cards/CardModal/NameField.jsx b/client/src/components/cards/CardModal/NameField.jsx index 9c521ee8..2c4cb809 100755 --- a/client/src/components/cards/CardModal/NameField.jsx +++ b/client/src/components/cards/CardModal/NameField.jsx @@ -82,7 +82,6 @@ const NameField = React.memo(({ defaultValue, size, onUpdate }) => { as={TextareaAutosize} value={value} maxLength={1024} - spellCheck={false} className={classNames(styles.field, styles[`field${upperFirst(size)}`])} onFocus={handleFocus} onKeyDown={handleKeyDown} diff --git a/client/src/components/lists/List/EditName.jsx b/client/src/components/lists/List/EditName.jsx index 356e4119..e5e0f86a 100755 --- a/client/src/components/lists/List/EditName.jsx +++ b/client/src/components/lists/List/EditName.jsx @@ -76,7 +76,6 @@ const EditName = React.memo(({ listId, onClose }) => { as={TextareaAutosize} value={value} maxLength={128} - spellCheck={false} className={styles.field} onClick={handleFieldClick} onKeyDown={handleFieldKeyDown} diff --git a/client/src/components/projects/AddProjectModal/AddProjectModal.jsx b/client/src/components/projects/AddProjectModal/AddProjectModal.jsx index cc5c6c32..7e49220d 100755 --- a/client/src/components/projects/AddProjectModal/AddProjectModal.jsx +++ b/client/src/components/projects/AddProjectModal/AddProjectModal.jsx @@ -129,7 +129,6 @@ const AddProjectModal = React.memo(() => { value={data.description} maxLength={1024} minRows={2} - spellCheck={false} className={styles.field} onKeyDown={handleDescriptionKeyDown} onChange={handleFieldChange} diff --git a/client/src/components/projects/ProjectSettingsModal/GeneralPane/EditInformation.jsx b/client/src/components/projects/ProjectSettingsModal/GeneralPane/EditInformation.jsx index 94ed47d4..dbcd4363 100644 --- a/client/src/components/projects/ProjectSettingsModal/GeneralPane/EditInformation.jsx +++ b/client/src/components/projects/ProjectSettingsModal/GeneralPane/EditInformation.jsx @@ -89,7 +89,6 @@ const EditInformation = React.memo(() => { value={data.description} maxLength={1024} minRows={2} - spellCheck={false} className={styles.field} onKeyDown={handleDescriptionKeyDown} onChange={handleFieldChange} diff --git a/client/src/components/task-lists/TaskList/AddTask.jsx b/client/src/components/task-lists/TaskList/AddTask.jsx index 79921551..921f0a45 100755 --- a/client/src/components/task-lists/TaskList/AddTask.jsx +++ b/client/src/components/task-lists/TaskList/AddTask.jsx @@ -168,7 +168,6 @@ const AddTask = React.memo(({ children, taskListId, isOpened, onClose }) => { placeholder={t('common.enterTaskDescription')} maxLength={1024} minRows={2} - spellCheck={false} className={styles.field} onKeyDown={handleFieldKeyDown} onChange={handleFieldChange} diff --git a/client/src/components/task-lists/TaskList/Task/EditName.jsx b/client/src/components/task-lists/TaskList/Task/EditName.jsx index 55005d01..233ff866 100755 --- a/client/src/components/task-lists/TaskList/Task/EditName.jsx +++ b/client/src/components/task-lists/TaskList/Task/EditName.jsx @@ -79,7 +79,6 @@ const EditName = React.memo(({ taskId, onClose }) => { value={value} maxLength={1024} minRows={2} - spellCheck={false} className={styles.field} onKeyDown={handleFieldKeyDown} onChange={handleFieldChange}