mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-25 14:51:31 -07:00
Fix client lint
This commit is contained in:
parent
d8a7e14294
commit
bf1e0bb0c6
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ function onDrop(ev: DragEvent): void {
|
|||
function onKeydown(ev: KeyboardEvent) {
|
||||
typing();
|
||||
if ((ev.key === 'Enter') && (ev.ctrlKey || ev.metaKey)) {
|
||||
textEl.value += '\n'
|
||||
textEl.value += '\n';
|
||||
}
|
||||
else if (ev.key === 'Enter' && !ev.shiftKey && canSend) {
|
||||
send();
|
||||
|
|
Loading…
Reference in a new issue