webui: fix keyboard shortcuts for new chat & edit chat title (#17007)

This commit is contained in:
chansikpark
2025-11-08 14:52:35 -05:00
committed by GitHub
parent 53d7d21e61
commit 333f2595a3
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -44,12 +44,12 @@
}
}
if (isCtrlOrCmd && event.shiftKey && event.key === 'o') {
if (isCtrlOrCmd && event.shiftKey && event.key === 'O') {
event.preventDefault();
goto('?new_chat=true#/');
}
if (event.shiftKey && isCtrlOrCmd && event.key === 'e') {
if (event.shiftKey && isCtrlOrCmd && event.key === 'E') {
event.preventDefault();
if (chatSidebar?.editActiveConversation) {