function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rowan  ChristmasRowan Christmas 

aura:iteration having odd behavior with LastModifiedDate on a custom object

Hi All,

I have the following:
 
<aura:iteration items="{!v.insights}" var="insight">
        {!insight.Name}
        <br></br>
        {!insight.LastModifiedDate}
        <hr></hr>
    </aura:iteration>


The NAME field works great. The LastModifiedDate does not... I've verfifed via SOQL queries that values exist... what am I missing?