Add icon to tags on notes.

This commit is contained in:
Matias De lellis
2020-05-26 23:31:02 -03:00
parent dbc36aebd4
commit 6a97bf0991
4 changed files with 12 additions and 5 deletions

View File

@@ -675,7 +675,7 @@ View.prototype = {
modalTags.html('');
newTags.forEach(function (item, index) {
var noteId = parseInt(item.id) || -1;
var tag = $('<div class="slim-tag" tag-id="' + noteId + '">' + item.text + '</div>');
var tag = $('<div class="icon-tag slim-tag" tag-id="' + noteId + '">' + item.text + '</div>');
modalTags.append(tag);
});
}