Skip to content

Commit

Permalink
Bugfix: notes with short titles had no titles in search results
Browse files Browse the repository at this point in the history
  • Loading branch information
Volmarg committed Nov 9, 2019
1 parent 29bea61 commit e2bd0b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/assets/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/assets/scripts/ui/search.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ export default (function () {
},
buildNotesSearchResultsListElement: function(data){
let title = data['title'];
let shortTitle = '';
let shortTitle = title;
let category = data['category'];
let categoryId = data['categoryId'];
let noteId = data['noteId'];
Expand Down

0 comments on commit e2bd0b3

Please sign in to comment.