We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a6670a commit 0f93e64Copy full SHA for 0f93e64
src/components/mdx/Img/Img.tsx
@@ -27,8 +27,8 @@ export async function Img({
27
const ratio = w && h ? w / h : undefined
28
29
// If only one dimension is provided, calculate the other based on the image's aspect ratio
30
- dims.width ??= height && ratio ? Number(height) * ratio : w
31
- dims.height ??= width && ratio ? Number(width) / ratio : h
+ dims.width ??= height && ratio ? Math.round(Number(height) * ratio) : w
+ dims.height ??= width && ratio ? Math.round(Number(width) / ratio) : h
32
}
33
34
return (
0 commit comments