This commit is contained in:
2024-10-19 08:16:51 +03:00
parent 17697d7f77
commit 07728cbbb0
24 changed files with 1875 additions and 16 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ const InputField = (props) => {
onKeyDown={(e) => {
if (e.key === 'Enter') {
if (props.submit) {
props.enter(props.submit);
props.submit();
}
}
}}