We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3102633 commit 2768286Copy full SHA for 2768286
frontend/src/views/ds/DataTable.vue
@@ -335,7 +335,11 @@ const btnSelectClick = (val: any) => {
335
</el-button>
336
</div>
337
338
- <div v-if="!loading" class="preview-or-schema">
+ <div
339
+ v-if="!loading"
340
+ class="preview-or-schema"
341
+ :class="btnSelect === 'q' && 'overflow-preview'"
342
+ >
343
<div v-if="btnSelect === 'd'" class="table-content_preview">
344
<el-table :data="fieldListComputed" style="width: 100%">
345
<el-table-column
@@ -642,6 +646,10 @@ const btnSelectClick = (val: any) => {
642
646
margin-top: 16px;
643
647
height: calc(100% - 50px);
644
648
649
+ &.overflow-preview {
650
+ overflow-y: auto;
651
+ }
652
+
645
653
.table-content_preview {
654
max-height: calc(100% - 50px);
655
overflow-y: auto;
0 commit comments