Remove guard for raw_html

This commit is contained in:
Sean King 2022-07-10 21:07:47 -06:00 committed by FloatingGhost
parent 1c5b94c7a9
commit 35dc8ee30a
1 changed files with 0 additions and 7 deletions

View File

@ -137,13 +137,6 @@ const StatusContent = {
const translateTo = this.$store.getters.mergedConfig.translationLanguage || this.$store.state.instance.interfaceLanguage
this.$store.dispatch('translateStatus', { id: this.status.id, language: translateTo, from: this.translateFrom })
}
},
watch: {
'status.raw_html' (newVal, oldVal) {
if (newVal !== oldVal) {
this.parseReadyDone = false
}
}
}
}