Incorrect date-time display in Retool table

Hello @Hsiao_Min_Shyh ,

The issue appears to be related to time zone or date formatting within the Retool table component. To address this, you can apply a custom transformer to manually format the date before displaying it in the table, ensuring it shows the correct time zone.

Here’s an example of how to format the date:

new Date({{ currentRow.timestamp }}).toLocaleString('en-US', { timeZone: 'Asia/Shanghai' })

Thank You.

4 Likes