This commit is contained in:
Daniel 2024-03-09 17:33:57 +08:00
parent bdf63c8a1d
commit b9e2b7661e
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 3 additions and 3 deletions

View file

@ -79,7 +79,7 @@ func ExportAv2CSV(avID, blockID string) (zipPath string, err error) {
name = "Untitled"
}
table, err := renderAttributeViewTable(attrView, view)
table, err := renderAttributeViewTable(attrView, view, "")
if nil != err {
logging.LogErrorf("render attribute view [%s] table failed: %s", avID, err)
return
@ -2255,7 +2255,7 @@ func exportTree(tree *parse.Tree, wysiwyg, expandKaTexMacros, keepFold bool,
return ast.WalkContinue
}
table, err := renderAttributeViewTable(attrView, view)
table, err := renderAttributeViewTable(attrView, view, "")
if nil != err {
logging.LogErrorf("render attribute view [%s] table failed: %s", avID, err)
return ast.WalkContinue