1
0
Fork 0
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:
Maksim Eltyshev 2025-07-17 14:18:30 +02:00
parent 71b4fd32cc
commit adf60c0c74
8 changed files with 0 additions and 8 deletions

View file

@ -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}

View file

@ -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}

View file

@ -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}

View file

@ -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}

View file

@ -129,7 +129,6 @@ const AddProjectModal = React.memo(() => {
value={data.description}
maxLength={1024}
minRows={2}
spellCheck={false}
className={styles.field}
onKeyDown={handleDescriptionKeyDown}
onChange={handleFieldChange}

View file

@ -89,7 +89,6 @@ const EditInformation = React.memo(() => {
value={data.description}
maxLength={1024}
minRows={2}
spellCheck={false}
className={styles.field}
onKeyDown={handleDescriptionKeyDown}
onChange={handleFieldChange}

View file

@ -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}

View file

@ -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}