1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Desktop: Fix: Fixed note history sort order.

This commit is contained in:
Laurent Cozic 2019-05-07 23:42:46 +01:00
parent 52a2daddbf
commit 23e43c7bc1

View File

@ -129,7 +129,7 @@ class NoteRevisionViewerComponent extends React.PureComponent {
revisionListItems.push(<option
key={rev.id}
value={rev.id}
>{time.formatMsToLocal(rev.updated_time)}</option>);
>{time.formatMsToLocal(rev.item_updated_time)}</option>);
}
const restoreButtonTitle = _('Restore');