Skip to content

Commit

Permalink
Fix: モバイルのタイムライン上の投稿フォームが1回投稿すると使えなくなる
Browse files Browse the repository at this point in the history
  • Loading branch information
mei23 committed Nov 6, 2019
1 parent 3c5fa7c commit b9ae0c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/client/app/mobile/views/components/post-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,8 @@ export default Vue.extend({
}
this.$emit('posted');
}).catch(err => {
this.clear();
}).finally(() => {
this.posting = false;
});
Expand Down

0 comments on commit b9ae0c1

Please sign in to comment.