Skip to content

Commit

Permalink
Merge pull request SigNoz#170 from SigNoz/fix-serviceMap-zoom
Browse files Browse the repository at this point in the history
(Fix) - serviceMap zooms correctly
  • Loading branch information
ankitnayan authored Jun 7, 2021
2 parents bd149f4 + 12911db commit 9baf873
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/modules/Servicemap/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ export const getZoomPx = (): number => {
if (width < 1400) {
return 190;
} else if (width > 1400 && width < 1700) {
return 400;
return 380;
} else if (width > 1700) {
return 485;
return 470;
}
return 190;
};
Expand Down

0 comments on commit 9baf873

Please sign in to comment.