Skip to content

Commit 880a698

Browse files
authored
Merge pull request #92 from jumpserver/pr@dev@fix_cancel_hostkey
fix: fix hot key 'Ctrl+C' to 'Ctrl+D'
2 parents ebbbb87 + 82cf817 commit 880a698

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/components/Main/Explore/QueryConsole/CodeEditor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export default {
133133
'Ctrl-Enter': (cm) => {
134134
this.onRun()
135135
},
136-
'Ctrl-C': (cm) => {
136+
'Ctrl-D': (cm) => {
137137
this.onStop()
138138
},
139139
'Ctrl-S': (cm) => {

0 commit comments

Comments
 (0)