Fix editor height in import from source modal (#870)

This commit is contained in:
1ilit
2026-02-11 23:19:49 +04:00
committed by GitHub
parent 5388f55792
commit d81f6ba43a

View File

@@ -16,7 +16,7 @@ export default function ImportSource({
<Tabs>
<TabPane tab={t("insert_sql")} itemKey="text-import">
<CodeEditor
className="h-56"
height={224}
language="sql"
onChange={(value) => {
setImportData((prev) => ({ ...prev, src: value }));