mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-05 16:28:49 +01:00
This commit is contained in:
parent
a08af3a486
commit
f87ac01461
1 changed files with 5 additions and 3 deletions
|
|
@ -114,9 +114,11 @@ export const genAVValueHTML = (value: IAVCellValue) => {
|
|||
break;
|
||||
case "relation":
|
||||
value?.relation?.contents?.forEach((item) => {
|
||||
const rollupText = genAVRollupHTML(item);
|
||||
if (rollupText) {
|
||||
html += rollupText + ", ";
|
||||
if (item) {
|
||||
const rollupText = genAVRollupHTML(item);
|
||||
if (rollupText) {
|
||||
html += rollupText + ", ";
|
||||
}
|
||||
}
|
||||
});
|
||||
if (html && html.endsWith(", ")) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue