Fix no results state
This commit is contained in:
parent
6c44769629
commit
f0d343dec6
1 changed files with 3 additions and 1 deletions
|
@ -176,7 +176,9 @@ const MultiAutocompleteSelectFieldContent: React.FC<
|
|||
return (
|
||||
<Paper className={classes.root}>
|
||||
<div className={classes.content} ref={anchor}>
|
||||
{choices.length > 0 || displayCustomValue ? (
|
||||
{choices.length > 0 ||
|
||||
displayValues.length > 0 ||
|
||||
displayCustomValue ? (
|
||||
<>
|
||||
{displayCustomValue && (
|
||||
<MenuItem
|
||||
|
|
Loading…
Reference in a new issue