moved similar notes from sidebar to the center pane

This commit is contained in:
zadam
2020-09-07 23:35:41 +02:00
parent 75c9db6432
commit 80f269d844
10 changed files with 174 additions and 105 deletions

View File

@@ -229,7 +229,7 @@ function findSimilarNotes(noteId) {
results.sort((a, b) => a.coeff > b.coeff ? -1 : 1);
return results.length > 50 ? results.slice(0, 50) : results;
return results.length > 50 ? results.slice(0, 200) : results;
}
/**