This commit is contained in:
Daniel 2024-09-18 11:28:04 +08:00
parent 4f31068205
commit 827819ef67
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 29 additions and 7 deletions

View file

@ -580,10 +580,9 @@ func exportPreview(c *gin.Context) {
}
id := arg["id"].(string)
stdHTML, outline := model.Preview(id)
stdHTML := model.Preview(id)
ret.Data = map[string]interface{}{
"html": stdHTML,
"outline": outline,
"html": stdHTML,
}
}