You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
const[isDragging,setDragging]=React.useState(false);// We use this to distinguish simple clicks on the component from drag & drop movements. The latter are ignored to not interfere with selecting text for copy & paste.
124
124
125
125
consteditorRef=React.useRef(null);
@@ -195,6 +195,11 @@ export default function SqlTerminal() {
195
195
performScrolldown.current=true;
196
196
},[recentCommands]);
197
197
198
+
// This stores the state of the execute-on-enter flag in the browser local storage
0 commit comments