()
| 134 | } |
| 135 | |
| 136 | update() { |
| 137 | return Promise.all([this.loadMeta(), this.loadUserInfo()]) |
| 138 | .then(() => Promise.all([ |
| 139 | this.loadComments().then(() => this.loadCommentReactions()), |
| 140 | this.loadReactions(), |
| 141 | ])) |
| 142 | .catch(e => this.state.error = e) |
| 143 | } |
| 144 | |
| 145 | markdown(text) { |
| 146 | return http.post('/markdown', { |
no test coverage detected