fix note tooltip code rendering

This commit is contained in:
zadam 2023-08-10 13:50:25 +02:00
parent ede9c43f67
commit 33780c1e17

View File

@ -31,7 +31,7 @@ async function getRenderedContent(entity, options = {}) {
await renderText(entity, $renderedContent);
}
else if (type === 'code') {
await renderCode(entity, options, $renderedContent);
await renderCode(entity, $renderedContent);
}
else if (type === 'image') {
renderImage(entity, $renderedContent, options);