소스 검색

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