Skip to content

Commit 9baf873

Browse files
authored
Merge pull request #170 from SigNoz/fix-serviceMap-zoom
(Fix) - serviceMap zooms correctly
2 parents bd149f4 + 12911db commit 9baf873

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/modules/Servicemap/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ export const getZoomPx = (): number => {
7979
if (width < 1400) {
8080
return 190;
8181
} else if (width > 1400 && width < 1700) {
82-
return 400;
82+
return 380;
8383
} else if (width > 1700) {
84-
return 485;
84+
return 470;
8585
}
8686
return 190;
8787
};

0 commit comments

Comments
 (0)