fixed autocomplete poppercomponent overlapping sidebar
Signed-off-by: JeevaRamanathan <jeevaramanathan.m@infosys.com>
This commit is contained in:
+3
@@ -152,6 +152,9 @@ export function EntityAutocompletePicker<
|
||||
<Typography className={classes.label} variant="button" component="label">
|
||||
{label}
|
||||
<Autocomplete<string, true>
|
||||
PopperComponent={popperProps => (
|
||||
<div {...popperProps}>{popperProps.children}</div>
|
||||
)}
|
||||
multiple
|
||||
disableCloseOnSelect
|
||||
options={availableOptions}
|
||||
|
||||
@@ -178,6 +178,9 @@ export const EntityOwnerPicker = (props?: EntityOwnerPickerProps) => {
|
||||
<Typography className={classes.label} variant="button" component="label">
|
||||
Owner
|
||||
<Autocomplete
|
||||
PopperComponent={popperProps => (
|
||||
<div {...popperProps}>{popperProps.children}</div>
|
||||
)}
|
||||
multiple
|
||||
disableCloseOnSelect
|
||||
loading={loading}
|
||||
|
||||
+3
@@ -73,6 +73,9 @@ export const EntityProcessingStatusPicker = () => {
|
||||
<Typography className={classes.label} variant="button" component="label">
|
||||
Processing Status
|
||||
<Autocomplete<string, true>
|
||||
PopperComponent={popperProps => (
|
||||
<div {...popperProps}>{popperProps.children}</div>
|
||||
)}
|
||||
multiple
|
||||
disableCloseOnSelect
|
||||
options={availableAdvancedItems}
|
||||
|
||||
+3
@@ -78,6 +78,9 @@ export const TemplateCategoryPicker = () => {
|
||||
Categories
|
||||
</Typography>
|
||||
<Autocomplete<string, true>
|
||||
PopperComponent={popperProps => (
|
||||
<div {...popperProps}>{popperProps.children}</div>
|
||||
)}
|
||||
multiple
|
||||
id="categories-picker"
|
||||
options={availableTypes}
|
||||
|
||||
Reference in New Issue
Block a user