Prevent undefined css variables
This commit is contained in:
parent
c82ccf5957
commit
a1b81562db
1 changed files with 12 additions and 9 deletions
|
@ -170,7 +170,9 @@ function Media({
|
||||||
const maxAspectHeight =
|
const maxAspectHeight =
|
||||||
window.innerHeight * (orientation === 'portrait' ? 0.45 : 0.33);
|
window.innerHeight * (orientation === 'portrait' ? 0.45 : 0.33);
|
||||||
const maxHeight = orientation === 'portrait' ? 0 : 160;
|
const maxHeight = orientation === 'portrait' ? 0 : 160;
|
||||||
const mediaStyles = {
|
const mediaStyles =
|
||||||
|
width && height
|
||||||
|
? {
|
||||||
'--width': `${width}px`,
|
'--width': `${width}px`,
|
||||||
'--height': `${height}px`,
|
'--height': `${height}px`,
|
||||||
// Calculate '--aspectWidth' based on aspect ratio calculated from '--width' and '--height', max height has to be 160px
|
// Calculate '--aspectWidth' based on aspect ratio calculated from '--width' and '--height', max height has to be 160px
|
||||||
|
@ -178,7 +180,8 @@ function Media({
|
||||||
(width / height) * Math.max(maxHeight, maxAspectHeight)
|
(width / height) * Math.max(maxHeight, maxAspectHeight)
|
||||||
}px`,
|
}px`,
|
||||||
aspectRatio: `${width} / ${height}`,
|
aspectRatio: `${width} / ${height}`,
|
||||||
};
|
}
|
||||||
|
: {};
|
||||||
|
|
||||||
const longDesc = isMediaCaptionLong(description);
|
const longDesc = isMediaCaptionLong(description);
|
||||||
const showInlineDesc =
|
const showInlineDesc =
|
||||||
|
|
Loading…
Add table
Reference in a new issue