Skip to content

Commit

Permalink
fix(fixed-issue-in-sqlcomponent): Reoslved issue in sql componet due …
Browse files Browse the repository at this point in the history
…to the merge conflict solve
  • Loading branch information
priyakanabar-crest committed Dec 27, 2024
1 parent 4782ecf commit 83d8894
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions zt_frontend/src/components/SQLComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,16 @@ export default {
return false;
},
},
{
key: 'ArrowDown',
run: (view) => {
if (view.state.selection.main.to === view.state.doc.length) {
this.$emit('navigateToCell', this.cellData.id, 'down');
return true;
}
return false;
},
}
]);
if (this.$devMode && !this.isAppRoute) {
return [
Expand Down

0 comments on commit 83d8894

Please sign in to comment.