From 915a61f8771f933708e6d8211f8ec24918b2033f Mon Sep 17 00:00:00 2001 From: Monish <139316519+m-o-n-i-s-h@users.noreply.github.com> Date: Thu, 18 Jan 2024 16:39:59 +0530 Subject: [PATCH] Fix card height --- src/report/Report.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/report/Report.tsx b/src/report/Report.tsx index cd263fa7c..a330767d8 100644 --- a/src/report/Report.tsx +++ b/src/report/Report.tsx @@ -199,7 +199,7 @@ export const NeoReport = ({ // If the compactCanvas=true setting is enabled then the report height is set to 210 if (el && settings?.compactCanvas) { if (type === 'table') { - el.style.height = `${height * 100}px`; + el.style.height = `${height * 210}px`; } } };