From 85c44baeb86ed7765447396d9208af7781eba855 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Fri, 5 Apr 2024 18:38:45 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/10823 --- app/src/protyle/render/av/col.ts | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/app/src/protyle/render/av/col.ts b/app/src/protyle/render/av/col.ts index 956ab6267..4da69443f 100644 --- a/app/src/protyle/render/av/col.ts +++ b/app/src/protyle/render/av/col.ts @@ -167,12 +167,13 @@ export const getEditHTML = (options: { `; } else if (colData.type === "template") { html += ` -`; } else if (colData.type === "relation") { const isSelf = colData.relation?.avID === options.data.id; - html += ` + `; } else if (colData.type === "rollup") { - html += getRollupHTML({colData}); + html += '' + getRollupHTML({colData}); + } else if (colData.type === "date") { + html += ` +`; } return `
${html}