aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean King <seanking2919@protonmail.com>2022-07-11 01:33:18 +0000
committerSean King <seanking2919@protonmail.com>2022-07-11 01:33:18 +0000
commite764fbe8b680d9b60fba3074de3ee2db88b3b674 (patch)
tree9fa8fa16d00fe4956841271adc3cbfd3e156983c /src
parent29ff63d1b420d0c36fb16c72389fdccd1294205a (diff)
parentc195e3571c113d29778ad86f4cbea019716fe787 (diff)
Merge branch 'from/edit-status/tusooa/1' into 'add/edit-status'
Handle explicit mention changes in status updates See merge request seanking/pleroma-fe!3
Diffstat (limited to 'src')
-rw-r--r--src/components/status_body/status_body.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/status_body/status_body.js b/src/components/status_body/status_body.js
index b8f6f9a0..0a3dcf79 100644
--- a/src/components/status_body/status_body.js
+++ b/src/components/status_body/status_body.js
@@ -125,6 +125,13 @@ const StatusContent = {
generateTagLink (tag) {
return `/tag/${tag}`
}
+ },
+ watch: {
+ 'status.raw_html' (newVal, oldVal) {
+ if (newVal !== oldVal) {
+ this.parseReadyDone = false
+ }
+ }
}
}