Text for some elements not showing up in Repeated list

Hi,

we have a repeated group with a lot of persons in the list (name, email, some more personal data etc.).

The problem is that some data for some persons is not shown in our list, even when it is set for this special person.

When I use the inspector the text is there. When inspecting the HTML it is missing in the according div. Why is it not shown in the list? For the next or previous list item it works without problem. Thus, I cannot find any issue.

It could be that the element has a max width or height applied to it. This could cause the text to get cut off. I noticed a width of 14% applied in the image you shared. Might be the reason.

That is true, is it not truncated automatically? Rather it is not shown at all?

Ok I fixed it with the following CSS, maybe it helps somebody:

{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

This topic was automatically closed after 14 days. New replies are no longer allowed.