Fix client lint

This commit is contained in:
ThatOneCalculator 2022-07-06 18:14:05 -07:00
parent 49c4d345f2
commit 033462653c

View file

@ -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();