MediaAttachmentGrid: fix placeholder aspect-ratio

This commit is contained in:
thislight 2024-10-10 19:49:51 +08:00
parent 0d9b370919
commit fd47639bef

View file

@ -89,7 +89,7 @@ const MediaAttachmentGrid: Component<{
const realHeight = height && height > maxHeight ? maxHeight : height;
const realWidth =
width && height && height > maxHeight
? maxHeight / (aspectRatio ?? 1)
? maxHeight * (aspectRatio ?? 1)
: width;
const style = () =>
loaded()