Skip to content
Snippets Groups Projects

Resolve "[MIN-114] Browse comments on the map"

Merged Piotr Gawron requested to merge 68-min-114-browse-comments-on-the-map into development
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -50,7 +50,7 @@ export const getCommentsFeatures = (
pointToProjection: UsePointToProjectionResult;
},
): Feature[] => {
return comments.map(comment =>
getCommentFeature(comment, { pointToProjection, type: comment.pinType, value: 7 }),
return comments.map((comment, index) =>
getCommentFeature(comment, { pointToProjection, type: comment.pinType, value: index }),
);
};
Loading