Ver código fonte

Changing to label instead of title

Kirk Trombley 5 anos atrás
pai
commit
e14514cf36

+ 4 - 1
client/src/components/screens/RoundSummary/useClickToCheckScore.jsx

@@ -5,6 +5,9 @@ export default (mapRef, point1) => {
   // when the map is clicked, call the scoring API and update the marker's title
   useClickMarker(mapRef, async (point2, marker) => {
     const { score } = await checkScore(point1, point2);
-    marker.setTitle(`Potential Score: ${score}`);
+    marker.setLabel({
+      fontWeight: "500",
+      text: `Potential Score: ${score}`
+    });
   });
 }