mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
Update post-form.vue
Close #4792 Co-Authored-By: tamaina <tamaina@hotmail.co.jp>
This commit is contained in:
parent
682ca98f0f
commit
4cac926d04
1 changed files with 1 additions and 1 deletions
|
@ -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(() => {
|
||||
|
|
Loading…
Reference in a new issue