mirror of
https://github.com/strapi/strapi.git
synced 2025-09-26 17:00:55 +00:00
Fixes #3738
This commit is contained in:
parent
07011d2e99
commit
62c367f024
@ -125,7 +125,9 @@ class Li extends React.Component {
|
|||||||
if (value === 'updatedAt') {
|
if (value === 'updatedAt') {
|
||||||
return (
|
return (
|
||||||
<div key={key} className={styles.truncate}>
|
<div key={key} className={styles.truncate}>
|
||||||
{moment(item[value]).format('YYYY/MM/DD - HH:mm')}
|
{moment(item.updatedAt || item.updated_at).format(
|
||||||
|
'YYYY/MM/DD - HH:mm'
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user