Skip to content

Commit 0b9efe6

Browse files
committed
fixed dendrogram render size to fit within window at bottom
1 parent 80c5fba commit 0b9efe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/ComponentMap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default function ComponentMap({
7171

7272
// setting the margins for the Map to render in the tab window.
7373
const innerWidth = totalWidth - margin.left - margin.right;
74-
const innerHeight = totalHeight - margin.top - margin.bottom;
74+
const innerHeight = totalHeight - margin.top - margin.bottom - 60;
7575

7676
let origin: { x: number; y: number };
7777
let sizeWidth: number;

0 commit comments

Comments
 (0)