fix: select table overlay (#13694)
This commit is contained in:
parent
64f967cb2d
commit
b247279ffe
|
|
@ -245,6 +245,7 @@ export default function DatabaseSelector({
|
|||
placeholder={t('Select a database')}
|
||||
autoSelect
|
||||
isDisabled={!isDatabaseSelectEnabled || readOnly}
|
||||
menuPosition="fixed"
|
||||
/>,
|
||||
null,
|
||||
);
|
||||
|
|
|
|||
|
|
@ -326,6 +326,7 @@ const TableSelector: FunctionComponent<TableSelectorProps> = ({
|
|||
optionRenderer={renderTableOption}
|
||||
valueRenderer={renderTableOption}
|
||||
isDisabled={readOnly}
|
||||
menuPosition="fixed"
|
||||
/>
|
||||
);
|
||||
} else if (formMode) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue