Преглед изворни кода

Changing to label instead of title

Kirk Trombley пре 5 година
родитељ
комит
e14514cf36
1 измењених фајлова са 4 додато и 1 уклоњено
  1. 4 1
      client/src/components/screens/RoundSummary/useClickToCheckScore.jsx

+ 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}`
+    });
   });
 }