remove contenttype check from content type watcher

This commit is contained in:
Shpuld Shpuldson 2020-07-06 11:12:33 +03:00
parent f254a847d2
commit 7bdc3d6ce9
1 changed files with 2 additions and 6 deletions

View File

@ -176,12 +176,8 @@ const PostStatusForm = {
...mapGetters(['mergedConfig'])
},
watch: {
'newStatus.contentType': function (newType) {
if (newType === 'text/plain') {
this.closePreview()
} else if (this.preview) {
this.previewStatus(this.newStatus)
}
'newStatus.contentType': function () {
this.autoPreview()
},
'newStatus.spoilerText': function () {
this.autoPreview()