Use consistent function names.

This commit is contained in:
hurxxxx 2025-03-19 02:23:30 +09:00
parent 3b624f35ac
commit 2b687e2c06

View File

@ -199,7 +199,7 @@
let showDeleteConfirm = false;
const keyDownEvent = (e) => {
const chatTitleInputKeydownHandler = (e) => {
if (e.key === 'Enter') {
e.preventDefault();
editChatTitle(id, chatTitle);
@ -259,7 +259,7 @@
bind:value={chatTitle}
id="chat-title-input-{id}"
class=" bg-transparent w-full outline-hidden mr-10"
on:keydown={keyDownEvent}
on:keydown={chatTitleInputKeydownHandler}
/>
</div>
{:else}