File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
docs/content.en/docs/release-notes Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Information about release notes of Coco Server is provided here.
34
34
- fix: increase read_timeout for HTTP streaming stability #798
35
35
- fix: enter key problem #794
36
36
- fix: fix selection issue after renaming #800
37
+ - fix: fix shortcut issue in windows context menu #804
37
38
38
39
### ✈️ Improvements
39
40
Original file line number Diff line number Diff line change @@ -142,7 +142,9 @@ const ContextMenu = ({ formatUrl }: ContextMenuProps) => {
142
142
type === "AI Assistant" ||
143
143
id === "Extension Store" ,
144
144
clickEvent ( ) {
145
- copyToClipboard ( formatUrl && formatUrl ( selectedSearchContent ) || url ) ;
145
+ copyToClipboard (
146
+ ( formatUrl && formatUrl ( selectedSearchContent ) ) || url
147
+ ) ;
146
148
} ,
147
149
} ,
148
150
{
@@ -169,7 +171,7 @@ const ContextMenu = ({ formatUrl }: ContextMenuProps) => {
169
171
name : t ( "search.contextMenu.copyQuestionAndAnswer" ) ,
170
172
icon : < Copy /> ,
171
173
keys : isMac ? [ "⌘" , "L" ] : [ "Ctrl" , "L" ] ,
172
- shortcut : isMac ? "meta.l" : "ctrl+ l" ,
174
+ shortcut : isMac ? "meta.l" : "ctrl. l" ,
173
175
hide : category !== "Calculator" ,
174
176
clickEvent ( ) {
175
177
copyToClipboard ( `${ query . value } = ${ result . value } ` ) ;
You can’t perform that action at this time.
0 commit comments