fix(collection/presentation): empty slides are confusing

This commit is contained in:
Elian Doran 2025-10-18 14:45:01 +03:00
parent e188702df8
commit 13f2061e75
No known key found for this signature in database

View File

@ -53,7 +53,7 @@ async function buildSlideModel(note: FNote): Promise<PresentationSlideBaseModel>
async function processContent(note: FNote): Promise<DangerouslySetInnerHTML> {
const { $renderedContent } = await contentRenderer.getRenderedContent(note, {
noChildrenList: true
});
return { __html: $renderedContent.html() };
}