We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In file named ItemView.vue
at line 80~89
the function 'fetchComments' without an 'else'
fix like this:
function fetchComments (store, item) { if (item && item.kids) { return store.dispatch('FETCH_ITEMS', { ids: item.kids }).then(() => Promise.all(item.kids.map(id => { return fetchComments(store, store.state.items[id]) }))) } else { // add this return Promise.resolve() } }
The text was updated successfully, but these errors were encountered:
glob
fix issues, close outdated prs, remove unused dependency glob (#254)
7a5c8fc
* close issues: close #202, close #231 close prs: close #209, close #216, close #244 * fallback false, remove unused `glob` * upgrade vuex-router-sync, fix #221, fix #218, fix #208, fix #207 * lock firebase at version 4.1.3 (firebase/firebase-js-sdk#157 (comment))
Successfully merging a pull request may close this issue.
In file named ItemView.vue
at line 80~89
the function 'fetchComments' without an 'else'
fix like this:
The text was updated successfully, but these errors were encountered: