fix(#753): add autoComplete attribute for remove suggestion of passwo… (#913)

* fix(#753): add autoComplete attribute for remove suggestion of password managers

* fix(#753): add autoComplete attribute for remove suggestion of password managers

* Update front/src/modules/ui/inplace-input/components/InplaceInputDoubleText.tsx

* Update front/src/modules/ui/inplace-input/components/InplaceInputDoubleText.tsx

* Update front/src/modules/ui/inplace-input/components/InplaceInputDoubleText.tsx

* Update front/src/modules/ui/inplace-input/components/InplaceInputDoubleText.tsx

---------

Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
This commit is contained in:
Gustavo Félix
2023-07-25 15:21:45 -03:00
committed by GitHub
parent a5ca913158
commit 59eb10ccc4
13 changed files with 14 additions and 0 deletions

View File

@ -33,6 +33,7 @@ export function BoardCardEditableFieldText({
placeholder={placeholder || ''}
autoFocus
value={internalValue}
autoComplete="off"
onChange={(event: ChangeEvent<HTMLInputElement>) => {
setInternalValue(event.target.value);
debouncedOnChange(event.target.value);

View File

@ -77,6 +77,7 @@ export function BoardColumnEditTitleMenu({
<StyledEditModeInput
value={internalValue}
onChange={handleChange}
autoComplete="off"
autoFocus
/>
</StyledEditTitleContainer>