fix issue on posting another status

This commit is contained in:
Shpuld Shpuldson 2020-07-07 11:31:24 +03:00
parent e3991db5c4
commit 84d728b970

View file

@ -230,7 +230,8 @@ const PostStatusForm = {
files: [], files: [],
visibility: newStatus.visibility, visibility: newStatus.visibility,
contentType: newStatus.contentType, contentType: newStatus.contentType,
poll: {} poll: {},
mediaDescriptions: {}
} }
this.pollFormVisible = false this.pollFormVisible = false
this.$refs.mediaUpload.clearFile() this.$refs.mediaUpload.clearFile()
@ -240,7 +241,7 @@ const PostStatusForm = {
el.style.height = 'auto' el.style.height = 'auto'
el.style.height = undefined el.style.height = undefined
this.error = null this.error = null
this.previewStatus() if (this.preview) this.previewStatus()
} else { } else {
this.error = data.error this.error = data.error
} }