fix: comment edit not updating original content (#5646)
This commit is contained in:
parent
274ecf4b20
commit
15206efc57
@ -126,6 +126,7 @@ module.exports = {
|
|||||||
async update ({ id, content, user }) {
|
async update ({ id, content, user }) {
|
||||||
const renderedContent = DOMPurify.sanitize(mkdown.render(content))
|
const renderedContent = DOMPurify.sanitize(mkdown.render(content))
|
||||||
await WIKI.models.comments.query().findById(id).patch({
|
await WIKI.models.comments.query().findById(id).patch({
|
||||||
|
content,
|
||||||
render: renderedContent
|
render: renderedContent
|
||||||
})
|
})
|
||||||
return renderedContent
|
return renderedContent
|
||||||
|
Loading…
Reference in New Issue
Block a user