I am using the SharePoint modern search results web part.
I am trying to truncate the Description variable so it only shows 50 characters.
{{Description.substring(0, 50)}}
{{Description.slice(0, 50)}}
I would have thought that would work as it's using JS right?
Can any body please point me in the right direction?
