diff --git a/client/src/components/AccountsSuggestField.js b/client/src/components/AccountsSuggestField.js index 7fba6a5cb..c0757d8b0 100644 --- a/client/src/components/AccountsSuggestField.js +++ b/client/src/components/AccountsSuggestField.js @@ -120,11 +120,11 @@ export default function AccountsSuggestField({ resetOnClose={true} fill={true} popoverProps={{ minimal: true }} - {...suggestProps} inputValueRenderer={handleInputValueRenderer} className={classNames(CLASSES.FORM_GROUP_LIST_SELECT, { [CLASSES.SELECT_LIST_FILL_POPOVER]: popoverFill, })} + {...suggestProps} /> ); } diff --git a/client/src/components/ContactsSuggestField.js b/client/src/components/ContactsSuggestField.js index cb8187920..4269d21ff 100644 --- a/client/src/components/ContactsSuggestField.js +++ b/client/src/components/ContactsSuggestField.js @@ -96,11 +96,11 @@ export default function ContactsSuggestField({ resetOnClose={true} // fill={true} popoverProps={{ minimal: true }} - {...suggestProps} inputValueRenderer={handleInputValueRenderer} className={classNames(CLASSES.FORM_GROUP_LIST_SELECT, { [CLASSES.SELECT_LIST_FILL_POPOVER]: popoverFill, })} + {...suggestProps} /> ); } diff --git a/client/src/components/ItemsSuggestField.js b/client/src/components/ItemsSuggestField.js index 5c91f21e4..f5f898943 100644 --- a/client/src/components/ItemsSuggestField.js +++ b/client/src/components/ItemsSuggestField.js @@ -100,11 +100,11 @@ export default function ItemsSuggestField({ inputProps={{ placeholder: defautlSelectText }} resetOnClose={true} fill={true} - {...suggestProps} popoverProps={{ minimal: true }} className={classNames(CLASSES.FORM_GROUP_LIST_SELECT, { [CLASSES.SELECT_LIST_FILL_POPOVER]: popoverFill, })} + {...suggestProps} /> ); }