fix(web): emit updated date when pressing enter (#9640)

wip uploading

format

wip first working version
This commit is contained in:
Lukas
2024-05-21 18:58:57 +02:00
committed by Marty Fuhry
parent a3489d604b
commit 4907916345
4 changed files with 138 additions and 103 deletions
@@ -17,4 +17,9 @@
{value}
on:input={(e) => (updatedValue = e.currentTarget.value)}
on:blur={() => (value = updatedValue)}
on:keydown={(e) => {
if (e.key === 'Enter') {
value = updatedValue;
}
}}
/>