fix: allow wider media

pull/1223/head
Anthony Fu 2023-01-16 12:25:05 +01:00
rodzic 8753a94aae
commit 00379e23aa
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -30,7 +30,7 @@ const aspectRatio = computed(() => {
if (fullSize)
return rawAspectRatio.value
if (rawAspectRatio.value)
return clamp(rawAspectRatio.value, 0.8, 2.5)
return clamp(rawAspectRatio.value, 0.8, 6)
return undefined
})