We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43e9e1e commit 0bcdd2aCopy full SHA for 0bcdd2a
1 file changed
superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx
@@ -104,6 +104,10 @@ const VerticalFilterControlContainer = styled(AllFilterControlContainer)`
104
.ant-form-item-tooltip {
105
margin-bottom: ${({ theme }) => theme.sizeUnit}px;
106
}
107
+
108
+ .ant-col.ant-form-item-label {
109
+ min-height: auto;
110
+ }
111
`;
112
113
const HorizontalFilterControlContainer = styled(AllFilterControlContainer)`
@@ -154,6 +158,11 @@ const VerticalFormItem = styled(StyledFormItem)<{
154
158
flex-direction: column;
155
159
`}
156
160
161
162
+ // Override Ant Design's min-height constraint to allow dynamic vertical expansion
163
+ .ant-col {
164
165
157
166
167
168
const HorizontalFormItem = styled(StyledFormItem)<{
0 commit comments