Collapsible List

Is there a way to make a list collapsible and clickable to ‘see more’.
Currently, I have a Truncate column but my ending (‘see more’) is placed like part of the text and is not clickable. What would be a good way to go about this?

You can use HTML in rich text like this.

<details>
  <summary>Title that is always visible</summary>
  
  <p>Hidden content that expands when clicked on</p>

</details>

image

image

2 Likes