Fix scroll wrapper (#8349)

Fixed scroll wrapper with conditionnal rendering
This commit is contained in:
Lucas Bordeau
2024-11-06 10:05:17 +01:00
committed by GitHub
parent 2d6b239da4
commit e36363fe15

View File

@ -179,8 +179,8 @@ export const ObjectFilterDropdownOptionSelect = () => {
/> />
))} ))}
</DropdownMenuItemsContainer> </DropdownMenuItemsContainer>
{showNoResult && <MenuItem text="No result" />}
</ScrollWrapper> </ScrollWrapper>
{showNoResult && <MenuItem text="No result" />}
</SelectableList> </SelectableList>
); );
}; };