diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2022-06-11 20:33:12 -0400 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-06-11 20:33:12 -0400 |
| commit | c195e3571c113d29778ad86f4cbea019716fe787 (patch) | |
| tree | 6b4ac6adb1d557dde74ef7f70fb1ce7b106794af /src | |
| parent | 32ecdfdd8738befa004f865f496b7df17a4c2030 (diff) | |
Handle explicit mention changes in status updates
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status_body/status_body.js | 7 |
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 + } + } } } |
