Remove body from entry list rows

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-17 22:40:22 +00:00
parent e88af98b2b
commit 8718cdda25

View File

@@ -383,7 +383,7 @@ function make_entry_row(entry, children_map) {
fill_markdown(row.querySelector('.task-title'), entry.title);
const body_el = row.querySelector('.task-body');
if (entry.body) { show(body_el); fill_markdown(body_el, entry.body); }
body_el.remove();
const tags_el = row.querySelector('.task-tags');
for (const tag of entry.tags) {