mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-23 18:53:36 +02:00
Fixed display of todos
This commit is contained in:
parent
3e1decdfa6
commit
cfa3c6f4bb
@ -90,8 +90,8 @@ android {
|
||||
applicationId "net.cozic.joplin"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 22
|
||||
versionCode 29
|
||||
versionName "0.9.16"
|
||||
versionCode 31
|
||||
versionName "0.9.18"
|
||||
ndk {
|
||||
abiFilters "armeabi-v7a", "x86"
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ class ItemListComponent extends Component {
|
||||
for (let i = 0; i < notes.length; i++) {
|
||||
const note = notes[i];
|
||||
if (note.is_todo) {
|
||||
if (todoFilter == 'recent' && note.updated_time < notRecentTime) continue;
|
||||
if (todoFilter == 'recent' && note.updated_time < notRecentTime && !!note.todo_completed) continue;
|
||||
if (todoFilter == 'nonCompleted' && !!note.todo_completed) continue;
|
||||
}
|
||||
output.push(note);
|
||||
|
Loading…
x
Reference in New Issue
Block a user