Task edit - Handle submit on enter key press

This commit is contained in:
2020-03-30 21:51:13 +05:30
parent 708bbdafca
commit d7b34dde85
@@ -95,6 +95,11 @@ export function CreateOrEditTaskCard({
placeholder="Create task"
autoFocus={true}
value={newCardText}
onKeyPress={e => {
if (e.key === 'Enter') {
onSubmit(e);
}
}}
onChange={e => setNewCardText(e.target.value)}
></textarea>
<div className={styles.createActionBtnContainer}>