mirror of
https://git.mirrors.martin98.com/https://github.com/open-webui/open-webui
synced 2025-08-18 00:55:53 +08:00
refac
This commit is contained in:
parent
3ab917cdd0
commit
dc3abc2bcb
@ -171,7 +171,11 @@
|
||||
}
|
||||
|
||||
// Check if Ctrl + Shift + ' is pressed
|
||||
if (isCtrlPressed && isShiftPressed && event.key.toLowerCase() === `'`) {
|
||||
if (
|
||||
isCtrlPressed &&
|
||||
isShiftPressed &&
|
||||
(event.key.toLowerCase() === `'` || event.key.toLowerCase() === `"`)
|
||||
) {
|
||||
event.preventDefault();
|
||||
console.log('temporaryChat');
|
||||
temporaryChatEnabled.set(!$temporaryChatEnabled);
|
||||
|
Loading…
x
Reference in New Issue
Block a user