Skip to content

Commit d92b7e4

Browse files
[25.0] Fix select field cut off in dataset view
The `.tab-content-panel` class was not full height of the container, and therefore, selects were being cut off below the content height. Changed it to 100% height and selects work fine now. Fixes #20817
1 parent 3118cd2 commit d92b7e4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

client/src/components/Dataset/DatasetView.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ watch(
318318
flex-direction: column;
319319
overflow: hidden;
320320
overflow-y: auto;
321+
height: 100%;
321322
}
322323
323324
.auto-download-message {

0 commit comments

Comments
 (0)