modified: frontend/src/components/SqlEditor.tsx

modified:   frontend/src/pages/SqlInterface.tsx
This commit is contained in:
2026-01-27 23:25:56 +03:00
parent 6b507425aa
commit dae878089d
2 changed files with 3 additions and 4 deletions

View File

@@ -319,14 +319,13 @@ export default function SqlInterface() {
<div ref={containerRef} className="flex-1 flex flex-col min-h-0 relative">
{/* SQL Editor */}
<div
className="overflow-hidden"
className="min-h-0"
style={{ height: `${state.splitPosition}%` }}
>
<SqlEditor
value={activeTab?.query || ''}
onChange={(value) => updateTab(activeTab.id, { query: value })}
databaseId={activeTab?.databaseId}
height="100%"
/>
</div>