Skip to content

Commit 333f259

Browse files
authored
webui: fix keyboard shortcuts for new chat & edit chat title (#17007)
1 parent 53d7d21 commit 333f259

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/server/public/index.html.gz

-4 Bytes
Binary file not shown.

tools/server/webui/src/routes/+layout.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@
4444
}
4545
}
4646
47-
if (isCtrlOrCmd && event.shiftKey && event.key === 'o') {
47+
if (isCtrlOrCmd && event.shiftKey && event.key === 'O') {
4848
event.preventDefault();
4949
goto('?new_chat=true#/');
5050
}
5151
52-
if (event.shiftKey && isCtrlOrCmd && event.key === 'e') {
52+
if (event.shiftKey && isCtrlOrCmd && event.key === 'E') {
5353
event.preventDefault();
5454
5555
if (chatSidebar?.editActiveConversation) {

0 commit comments

Comments
 (0)