Skip to content

Commit

Permalink
PATCH: fix: service.loadTopicsViewpoints method
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel committed Oct 25, 2023
1 parent 4afa9b9 commit 746f0f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class Service {

async loadTopicsViewpoints(project, topics) {
await eachLimit(topics, 10, (topic, done) => {
fetchTopicViewpoints(project, topic).then(viewpoints => {
this.fetchTopicViewpoints(project, topic).then(viewpoints => {
topic.viewpoints = viewpoints;
done();
}, done);
Expand Down

0 comments on commit 746f0f5

Please sign in to comment.