feat(in-app-help): render note list

This commit is contained in:
Elian Doran 2025-03-16 13:24:34 +02:00
parent 7df86dd60b
commit 6f799692e0
No known key found for this signature in database

View File

@ -40,7 +40,7 @@ async function getRenderedContent(this: {} | { ctx: string }, entity: FNote | FA
const $renderedContent = $('<div class="rendered-content">'); const $renderedContent = $('<div class="rendered-content">');
if (type === "text") { if (type === "text" || type === "book") {
await renderText(entity, $renderedContent); await renderText(entity, $renderedContent);
} else if (type === "code") { } else if (type === "code") {
await renderCode(entity, $renderedContent); await renderCode(entity, $renderedContent);