Hello!
I am currently creating a statistics table where I pass in information from a database, in our database we store timestamps in a unix (milliseconds) timestamp, and I wrote a simple javascript query for the column to convert the timestamp into a readable format using moment.utc(data).format('YYYY-MM-DD'),
'1681504591' -> 'Apr 14, 2023'
upon loading the table, the dates present well, but I have a script that will return a new set of data based on a mongodb query once the information is update, and once I run that new query, and the information loads into the table, the dates remain stagnant at the first loaded date.
Please feel free to offer up solutions to this issue!
Regards
Kyle