aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean King <seanking2919@protonmail.com>2022-07-10 21:07:47 -0600
committerSean King <seanking2919@protonmail.com>2022-07-10 21:07:47 -0600
commit75216c5feb32b32e24952663ffa4233410585785 (patch)
tree3acc9a829cb4fedbae9f8a19bd25d0e72494eccb
parent63519c325f879ea3f64052e39c019267d8238b54 (diff)
Remove guard for raw_html
-rw-r--r--src/components/status_body/status_body.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/components/status_body/status_body.js b/src/components/status_body/status_body.js
index 0a3dcf79..b8f6f9a0 100644
--- a/src/components/status_body/status_body.js
+++ b/src/components/status_body/status_body.js
@@ -125,13 +125,6 @@ const StatusContent = {
generateTagLink (tag) {
return `/tag/${tag}`
}
- },
- watch: {
- 'status.raw_html' (newVal, oldVal) {
- if (newVal !== oldVal) {
- this.parseReadyDone = false
- }
- }
}
}