Handle explicit mention changes in status updates

This commit is contained in:
Tusooa Zhu 2022-06-11 20:33:12 -04:00 committed by Sol Fisher Romanoff
parent 3c1dd90e94
commit 88b4d864cb
Signed by untrusted user who does not match committer: nbsp
GPG Key ID: 9D3F2B64F2341B62
1 changed files with 7 additions and 0 deletions

View File

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