Skip to content

Commit

Permalink
removed run code on ctrl enter in app mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Red-Giuliano committed Jan 9, 2024
1 parent 0852eb5 commit e820981
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion zt_frontend/src/components/CodeComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ export default {
{
key: "Ctrl-Enter",
run: () => {
handleCtrlEnter();
if (this.$devMode){
handleCtrlEnter()};
return true;
}
}
Expand Down
3 changes: 2 additions & 1 deletion zt_frontend/src/components/SQLComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ export default {
{
key: "Ctrl-Enter",
run: () => {
handleCtrlEnter();
if (this.$devMode){
handleCtrlEnter()};
return true;
}
}
Expand Down

0 comments on commit e820981

Please sign in to comment.