Minor: fixed styling issue for DQ (#17651)

This commit is contained in:
Shailesh Parmar 2024-08-30 20:33:24 +05:30 committed by GitHub
parent b618bb569c
commit d0846d64bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -314,6 +314,8 @@ const TestCaseForm: React.FC<TestCaseFormProps> = ({
},
]}>
<Select
allowClear
showSearch
data-testid="column"
placeholder={t('label.please-select-entity', {
entity: t('label.column-lowercase'),

View File

@ -539,7 +539,8 @@ const ProfilerSettingsModal: React.FC<ProfilerSettingsModalProps> = ({
allowClear
className="w-full"
data-testid="exclude-column-select"
mode="tags"
dropdownStyle={{ maxHeight: 200 }}
mode="multiple"
options={selectOptions}
placeholder={t('label.select-column-plural-to-exclude')}
size="middle"
@ -591,6 +592,8 @@ const ProfilerSettingsModal: React.FC<ProfilerSettingsModalProps> = ({
{...restField}
name={[name, 'columnName']}>
<Select
allowClear
showSearch
className="w-full"
data-testid="include-column-select"
options={selectOptions}
@ -699,6 +702,7 @@ const ProfilerSettingsModal: React.FC<ProfilerSettingsModalProps> = ({
]}>
<Select
allowClear
showSearch
className="w-full"
data-testid="column-name"
disabled={!state?.enablePartition}