1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-29 10:09:44 +02:00

fix: Fix select behaviour

This commit is contained in:
Maksim Eltyshev 2022-07-26 12:49:40 +02:00
parent 1329da3fe5
commit 5ac99c9d1d
15 changed files with 18 additions and 18 deletions

View file

@ -66,7 +66,7 @@ const DescriptionEdit = React.forwardRef(({ children, defaultValue, onUpdate },
useEffect(() => {
if (isOpened) {
field.current.ref.current.select();
field.current.ref.current.focus();
}
}, [isOpened]);