Minor: fixed ui feedback for data quality (#17325)

This commit is contained in:
Shailesh Parmar 2024-08-08 00:18:37 +05:30 committed by GitHub
parent 67634f9695
commit 8ef1ab1ff8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View File

@ -220,6 +220,7 @@ const TestCaseResultTab = () => {
</Col>
<Col span={24}>
<SchemaEditor
className="query-editor-min-h-60"
editorClass="table-query-editor"
mode={{ name: CSMode.SQL }}
options={{

View File

@ -28,6 +28,12 @@
height: 200px;
}
}
.query-editor-min-h-60 {
.CodeMirror {
min-height: 60px;
}
}
.full-screen-editor-height > .CodeMirror {
height: calc(100vh - 250px) !important;
}