mirror of
https://github.com/open-webui/open-webui
synced 2025-01-18 00:30:51 +00:00
refac
This commit is contained in:
parent
9f7ef209fa
commit
1c355929fc
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user