Update post-form.vue

Close #4792

Co-Authored-By: tamaina <tamaina@hotmail.co.jp>
This commit is contained in:
syuilo 2019-04-24 20:47:47 +09:00
parent 7b29e7cf7e
commit e8c8f67a09
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -228,7 +228,7 @@ export default Vue.extend({
const draft = JSON.parse(localStorage.getItem('drafts') || '{}')[this.draftId];
if (draft) {
this.text = draft.data.text;
this.files = draft.data.files;
this.files = (draft.data.files || []).filter(e => e);
if (draft.data.poll) {
this.poll = true;
this.$nextTick(() => {