Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
spond committed Sep 30, 2024
1 parent 9c9ac2c commit 1675519
Show file tree
Hide file tree
Showing 3 changed files with 150 additions and 80 deletions.
2 changes: 1 addition & 1 deletion src/clustersOfInterest.js
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,7 @@ function priority_set_view(self, priority_set, options) {
return viewEnum[0];
}
if (
self._filter_by_date(
self.filter_by_date(
reference_date,
timeDateUtil._networkCDCDateField,
current_time,
Expand Down
4 changes: 2 additions & 2 deletions src/hiv_tx_network.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ class HIVTxNetwork {
this.mapProjection = d3.geo
.mercator()
.translate([
this.margin.left + self.width / 2,
this.margin.top + self.height / 2,
this.margin.left + this.width / 2,
this.margin.top + this.height / 2,
])
.scale((150 * this.width) / 960);
_.each(this.countryCentersObject, (value) => {
Expand Down
Loading

0 comments on commit 1675519

Please sign in to comment.