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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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