Handle explicit mention changes in status updates

This commit is contained in:
Tusooa Zhu 2022-06-11 20:33:12 -04:00
parent 32ecdfdd87
commit c195e3571c
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
1 changed files with 7 additions and 0 deletions

View File

@ -125,6 +125,13 @@ const StatusContent = {
generateTagLink (tag) {
return `/tag/${tag}`
}
},
watch: {
'status.raw_html' (newVal, oldVal) {
if (newVal !== oldVal) {
this.parseReadyDone = false
}
}
}
}