Commit 1c355929 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac

parent 9f7ef209
......@@ -124,7 +124,7 @@
const onBlur = () => {
shiftKey = false;
selectedChatId = false;
selectedChatId = null;
};
window.addEventListener('keydown', onKeyDown);
......@@ -477,6 +477,9 @@
on:select={() => {
selectedChatId = chat.id;
}}
on:unselect={() => {
selectedChatId = null;
}}
on:delete={(e) => {
if ((e?.detail ?? '') === 'shift') {
deleteChatHandler(chat.id);
......
......@@ -231,7 +231,7 @@
dispatch('delete');
}}
onClose={() => {
selected = false;
dispatch('unselect');
}}
>
<button
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment