Influx: Query segment menus now position correctly near the bottom of the screen (#60087)

* only open the menu once options are loaded for better positioning

* use !loadState.loading instead of Boolean(loadState.value)
This commit is contained in:
Ashley Harrison 2022-12-14 09:51:04 +00:00 committed by GitHub
parent 5010765115
commit bb2ecb1468
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,7 +111,7 @@ const SelSingleLoad = ({ loadOptions, allowCustomValue, onChange, onClose }: Sel
isLoading={loadState.loading}
formatCreateLabel={formatCreateLabel}
autoFocus
isOpen
isOpen={!loadState.loading}
onCloseMenu={onClose}
allowCustomValue={allowCustomValue}
options={loadState.value ?? []}