Skip to content

Commit 0b81963

Browse files
author
ESaracay
committed
Updated code for frontend of software guide
1 parent e6d9fd1 commit 0b81963

File tree

4 files changed

+1037
-133
lines changed

4 files changed

+1037
-133
lines changed

src/app/components/ResponsiveImageMapper.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const ResponsiveImageMapper = ({ src, map, imgWidth, clickFunc, parentWidth = '1
3838
const scale = dimensions.width / imgWidth;
3939
const shiftDown = 20;
4040
const shiftLeft = -15;
41-
const baseFontSize = 14;
41+
const baseFontSize = 10;
4242
const baseSize = 20; // Base size of the circle in pixels
4343

4444
const handleMouseEnter = (index, coords) => {
@@ -56,7 +56,7 @@ const ResponsiveImageMapper = ({ src, map, imgWidth, clickFunc, parentWidth = '1
5656
{map.areas.map((area, index) => {
5757
const scaledAreaCoords = scaledCoords(area.coords, scale);
5858
const [centerX, centerY] = getPolygonCenter(scaledAreaCoords);
59-
const tableNum = area.name.split('-')[1]; // Extract table_num from area.name
59+
const tableNum = area.name.split('-')[2]; // Extract table_num from area.name
6060
const fontSize = baseFontSize * scale; // Scale the font size
6161
const size = baseSize * scale; // Scale the size of the circle
6262

0 commit comments

Comments
 (0)