Skip to content

Commit

Permalink
All: Fixes #271: Sort by created time was not respected
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent22 committed Mar 10, 2018
1 parent 3370b57 commit dcaaf50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ReactNativeClient/lib/models/Note.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class Note extends BaseItem {
}

static previewFields() {
return ['id', 'title', 'body', 'is_todo', 'todo_completed', 'parent_id', 'updated_time', 'user_updated_time', 'encryption_applied'];
return ['id', 'title', 'body', 'is_todo', 'todo_completed', 'parent_id', 'updated_time', 'user_updated_time', 'user_created_time', 'encryption_applied'];
}

static previewFieldsSql() {
Expand Down

0 comments on commit dcaaf50

Please sign in to comment.