I am having trouble getting multiple rows to work inside the Antd Submenu. When I select only one row, it works fine. However, when I try to select multiple rows, the ellipsis is not shown at all and the text remains in one row.
<SubMenu
title={
<Typography.Paragraph ellipsis={{ rows: 2, tooltip: { title: 'Long title', placement: 'right' } }}>
{'Long title'}
</Typography.Paragraph>
}
>
{submenuItems}
)}
</SubMenu>