🎨 Improve database sort/calc for relation and rollup

This commit is contained in:
Daniel 2024-04-14 12:34:06 +08:00
parent 02415b8e90
commit bf4ad0972b
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
6 changed files with 60 additions and 54 deletions

View file

@ -148,7 +148,7 @@ func ExportAv2CSV(avID, blockID string) (zipPath string, err error) {
}
}
val = cell.Value.String()
val = cell.Value.String(true)
}
rowVal = append(rowVal, val)
@ -2335,7 +2335,7 @@ func exportTree(tree *parse.Tree, wysiwyg, expandKaTexMacros, keepFold bool,
}
}
val = cell.Value.String()
val = cell.Value.String(true)
}
mdTableCell.AppendChild(&ast.Node{Type: ast.NodeText, Tokens: []byte(val)})
}