1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

All: Fixes #818: Use sort options when displayed tagged notes

This commit is contained in:
Laurent Cozic
2018-09-30 20:43:46 +01:00
parent 6ea77b36ce
commit 95a06c4531
3 changed files with 7 additions and 5 deletions

View File

@ -215,7 +215,7 @@ class BaseApplication {
if (parentType === Folder.modelType()) {
notes = await Note.previews(parentId, options);
} else if (parentType === Tag.modelType()) {
notes = await Tag.notes(parentId);
notes = await Tag.notes(parentId, options);
} else if (parentType === BaseModel.TYPE_SEARCH) {
let fields = Note.previewFields();
let search = BaseModel.byId(state.searches, parentId);