Skip to content

Commit fdeb120

Browse files
committed
bugfix paper height calculation
1 parent 575b5e9 commit fdeb120

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vis/js/templates/Paper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ const getMetadataHeight = (realHeight, numOfLabels, isZoomed) => {
553553
let readersHeight = 0;
554554

555555
if (numOfLabels && isZoomed) {
556-
readersHeight += numOfLabels * 12 + 12;
556+
readersHeight += numOfLabels * 12 + 10;
557557
}
558558
if (numOfLabels && !isZoomed) {
559559
readersHeight += 12;

0 commit comments

Comments
 (0)