diff --git a/src/components/status_body/status_body.js b/src/components/status_body/status_body.js index 91d795f1..4fe36b80 100644 --- a/src/components/status_body/status_body.js +++ b/src/components/status_body/status_body.js @@ -127,6 +127,13 @@ const StatusContent = { generateTagLink (tag) { return `/tag/${tag}` } + }, + watch: { + 'status.raw_html' (newVal, oldVal) { + if (newVal !== oldVal) { + this.parseReadyDone = false + } + } } }