diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-05 09:55:19 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:05:57 +0200 |
| commit | 02eafd26b8841ed5896ab83672aba13d569ea63d (patch) | |
| tree | 4ef0a58b0efdb0d0ccbac81d45c25397c875398e /src/components/map/groups/GridGroup.js | |
| parent | 42778e8be409b97059fa519b53c303cdba502e01 (diff) | |
Fix issue loading DC with previously filled store
Diffstat (limited to 'src/components/map/groups/GridGroup.js')
| -rw-r--r-- | src/components/map/groups/GridGroup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/map/groups/GridGroup.js b/src/components/map/groups/GridGroup.js index f50482ce..7affeced 100644 --- a/src/components/map/groups/GridGroup.js +++ b/src/components/map/groups/GridGroup.js @@ -17,10 +17,10 @@ const GridGroup = () => ( <Group> {HORIZONTAL_POINT_PAIRS.concat(VERTICAL_POINT_PAIRS).map((points, index) => ( <Line + key={index} points={points} stroke={GRID_COLOR} strokeWidth={GRID_LINE_WIDTH_IN_PIXELS} - key={index} /> ))} </Group> |
