Skip to content

Commit

Permalink
Merge pull request #3 from tessus/fix/num-notes-dropdown
Browse files Browse the repository at this point in the history
fix the number of items in dropdown
  • Loading branch information
roman-r-m committed Jan 31, 2021
2 parents 3fbfc22 + db448cc commit a3342c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ async function getNotes(prefix: string): Promise<any[]> {
fields: ['id', 'title'],
order_by: 'updated_time',
order_dir: 'DESC',
limit: 10,
limit: 11,
});
return notes.items;
} else {
Expand Down

0 comments on commit a3342c5

Please sign in to comment.