Skip to content

Commit

Permalink
Merge pull request #97 from mercedes-benz/FixCarHeight
Browse files Browse the repository at this point in the history
OUPT Sprint 20 Fix card height issue
  • Loading branch information
devarajanmurugesan committed Jan 18, 2024
2 parents 4dce727 + 915a61f commit 7d7767e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/report/Report.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
}
}
};
Expand Down

0 comments on commit 7d7767e

Please sign in to comment.