File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/modules/sub-items/components/table-view Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -187,13 +187,13 @@ export default class TableViewItemComponent extends PureComponent {
187187 renderModifiedCell ( ) {
188188 const { modificationDate } = this . props . item . content . _info ;
189189
190- return < div className = "c-table-view-item__text-wrapper" > { formatShortDateTime ( new Date ( modificationDate . timestamp ) ) } </ div > ;
190+ return < div className = "c-table-view-item__text-wrapper" > { formatShortDateTime ( new Date ( modificationDate . timestamp * 1000 ) ) } </ div > ;
191191 }
192192
193193 renderPublishedCell ( ) {
194194 const { publishedDate } = this . props . item . content . _info ;
195195
196- return < div className = "c-table-view-item__text-wrapper" > { formatShortDateTime ( new Date ( publishedDate . timestamp ) ) } </ div > ;
196+ return < div className = "c-table-view-item__text-wrapper" > { formatShortDateTime ( new Date ( publishedDate . timestamp * 1000 ) ) } </ div > ;
197197 }
198198
199199 renderContentTypeCell ( ) {
You can’t perform that action at this time.
0 commit comments