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

pull/1450/head
Elian Doran 2025-03-16 13:24:34 +07:00
parent 7df86dd60b
commit 6f799692e0
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

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