Remove logging line (#2284)

This commit is contained in:
Abitofevrything 2021-10-27 19:45:59 +02:00 committed by GitHub
parent e6af84df39
commit a7d3dafcf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,8 +23,6 @@ async function getRenderedContent(note, options = {}) {
if (type === 'text') {
const noteComplement = await froca.getNoteComplement(note.noteId);
console.log(noteComplement.content);
if (!utils.isHtmlEmpty(noteComplement.content)) {
$renderedContent.append($('<div class="ck-content">').html(trim(noteComplement.content, options.trim)));