How can I limit the characters in the Collection Item Name? Currently no option in the default fiels

You can set those values of CSS to limit text into line lines and ellipses, Overvloe has by default option and white-space and text-overflow use

Custom Property:


.one-line-paragraph {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}