mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 12:49:43 +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')}
|
||||
maxLength={1024}
|
||||
minRows={3}
|
||||
spellCheck={false}
|
||||
className={styles.field}
|
||||
onKeyDown={handleFieldKeyDown}
|
||||
onChange={handleFieldChange}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -129,7 +129,6 @@ const AddProjectModal = React.memo(() => {
|
|||
value={data.description}
|
||||
maxLength={1024}
|
||||
minRows={2}
|
||||
spellCheck={false}
|
||||
className={styles.field}
|
||||
onKeyDown={handleDescriptionKeyDown}
|
||||
onChange={handleFieldChange}
|
||||
|
|
|
@ -89,7 +89,6 @@ const EditInformation = React.memo(() => {
|
|||
value={data.description}
|
||||
maxLength={1024}
|
||||
minRows={2}
|
||||
spellCheck={false}
|
||||
className={styles.field}
|
||||
onKeyDown={handleDescriptionKeyDown}
|
||||
onChange={handleFieldChange}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue