Skip to content

Commit

Permalink
fix: merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Oct 13, 2020
1 parent 7db853d commit 9b621aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modes/overview/vegaSpec.js
Expand Up @@ -17,7 +17,7 @@ function fetchMulti(sensor, selections, startDay, endDay) {
return fetchTimeSlice(sensor, region.level, region.propertyId, startDay, endDay, false, {
geo_value: region.propertyId,
})
.then(addMissing)
.then((rows) => addMissing(rows, sensor))
.then((rows) =>
rows.map((row) => {
row.displayName = region.displayName;
Expand All @@ -35,7 +35,7 @@ function fetchSingle(sensor, region, startDay, endDay) {
return fetchTimeSlice(sensor, region.level, region.propertyId, startDay, endDay, false, {
geo_value: region.propertyId,
})
.then(addMissing)
.then((rows) => addMissing(rows, sensor))
.then((rows) =>
rows.map((row) => {
row.displayName = region.displayName;
Expand Down

0 comments on commit 9b621aa

Please sign in to comment.