maybe fix enter not working in some places
All checks were successful
Lint / pnpm_install (pull_request) Successful in 2m11s
Test (backend) / unit (22.x) (pull_request) Successful in 7m52s
Test (backend) / e2e (22.x) (pull_request) Successful in 9m17s
Test (frontend) / vitest (22.x) (pull_request) Successful in 3m6s
Test (production install and build) / production (22.x) (pull_request) Successful in 2m52s
Test (backend) / validate-api-json (22.x) (pull_request) Successful in 3m23s
Lint / lint (backend) (pull_request) Successful in 4m14s
Lint / lint (frontend) (pull_request) Successful in 9m40s
Lint / lint (misskey-js) (pull_request) Successful in 2m24s
Lint / lint (sw) (pull_request) Successful in 2m14s
Lint / typecheck (backend) (pull_request) Successful in 3m10s
Lint / typecheck (misskey-js) (pull_request) Successful in 2m29s

This commit is contained in:
Leah 2025-01-19 17:45:15 +01:00
parent 274da9825a
commit 8e60a338fa

View file

@ -111,7 +111,7 @@ const onKeydown = (ev: KeyboardEvent) => {
emit('keydown', ev);
if (ev.code === 'Enter') {
if (ev.key === 'Enter') {
emit('enter');
}
};