Revert "Revert "fix?""

This reverts commit 9cb4fbfd96.
This commit is contained in:
tamaina 2023-04-12 14:17:17 +00:00
parent 0560487e63
commit 3d5c068aed
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ function calcAspectRatio() {
let img = props.mediaList[0];
if (!(img.properties.width && img.properties.height)) {
if (props.mediaList.length !== 1 || !(img.properties.width && img.properties.height)) {
gallery.value.style.aspectRatio = '';
return;
}
@ -57,7 +57,7 @@ function calcAspectRatio() {
switch (defaultStore.state.mediaListWithOneImageAppearance) {
//
case '16_9':
gallery.value.style.aspectRatio = Math.max(16 / 9, img.properties.width / img.properties.height).toString();
gallery.value.style.aspectRatio = Math.max(16 / 9, img.properties.width / img.properties.height).toString() + '/1';
break;
default:
gallery.value.style.aspectRatio = '';