From 1fd1af214dca264a3d18a925dcc5056d14bd773f Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Wed, 14 Dec 2022 10:53:22 +0100 Subject: [PATCH] ui: allow wider media --- components/status/StatusAttachment.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/status/StatusAttachment.vue b/components/status/StatusAttachment.vue index 99670bcb..42dbd5d1 100644 --- a/components/status/StatusAttachment.vue +++ b/components/status/StatusAttachment.vue @@ -30,7 +30,7 @@ const aspectRatio = computed(() => { if (fullSize) return rawAspectRatio.value if (rawAspectRatio.value) - return clamp(rawAspectRatio.value, 0.8, 1.5) + return clamp(rawAspectRatio.value, 0.8, 2.5) return undefined })