From 84d728b9708fbb64f20de1f65f9bb1af7f426d59 Mon Sep 17 00:00:00 2001 From: Shpuld Shpuldson Date: Tue, 7 Jul 2020 11:31:24 +0300 Subject: [PATCH] fix issue on posting another status --- src/components/post_status_form/post_status_form.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 48c3615d..18f02eba 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -230,7 +230,8 @@ const PostStatusForm = { files: [], visibility: newStatus.visibility, contentType: newStatus.contentType, - poll: {} + poll: {}, + mediaDescriptions: {} } this.pollFormVisible = false this.$refs.mediaUpload.clearFile() @@ -240,7 +241,7 @@ const PostStatusForm = { el.style.height = 'auto' el.style.height = undefined this.error = null - this.previewStatus() + if (this.preview) this.previewStatus() } else { this.error = data.error }