mirror of
https://github.com/open-webui/open-webui
synced 2025-05-19 12:51:35 +00:00
refac
This commit is contained in:
parent
9f7ef209fa
commit
1c355929fc
@ -124,7 +124,7 @@
|
|||||||
|
|
||||||
const onBlur = () => {
|
const onBlur = () => {
|
||||||
shiftKey = false;
|
shiftKey = false;
|
||||||
selectedChatId = false;
|
selectedChatId = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
window.addEventListener('keydown', onKeyDown);
|
window.addEventListener('keydown', onKeyDown);
|
||||||
@ -477,6 +477,9 @@
|
|||||||
on:select={() => {
|
on:select={() => {
|
||||||
selectedChatId = chat.id;
|
selectedChatId = chat.id;
|
||||||
}}
|
}}
|
||||||
|
on:unselect={() => {
|
||||||
|
selectedChatId = null;
|
||||||
|
}}
|
||||||
on:delete={(e) => {
|
on:delete={(e) => {
|
||||||
if ((e?.detail ?? '') === 'shift') {
|
if ((e?.detail ?? '') === 'shift') {
|
||||||
deleteChatHandler(chat.id);
|
deleteChatHandler(chat.id);
|
||||||
|
@ -231,7 +231,7 @@
|
|||||||
dispatch('delete');
|
dispatch('delete');
|
||||||
}}
|
}}
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
selected = false;
|
dispatch('unselect');
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
|
Loading…
Reference in New Issue
Block a user