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
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:
parent
274da9825a
commit
8e60a338fa
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ const onKeydown = (ev: KeyboardEvent) => {
|
||||||
|
|
||||||
emit('keydown', ev);
|
emit('keydown', ev);
|
||||||
|
|
||||||
if (ev.code === 'Enter') {
|
if (ev.key === 'Enter') {
|
||||||
emit('enter');
|
emit('enter');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue