editing #158

Merged
floatingghost merged 21 commits from editing into develop 2022-09-06 19:25:04 +00:00
Showing only changes of commit 7248fbe4b6 - Show all commits

View file

@ -137,6 +137,13 @@ const StatusContent = {
const translateTo = this.$store.getters.mergedConfig.translationLanguage || this.$store.state.instance.interfaceLanguage 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 }) 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
}
}
} }
} }