From: Dessalines Date: Thu, 3 Dec 2020 14:28:13 +0000 (-0600) Subject: Fixing max image size. X-Git-Url: http://these/git/?a=commitdiff_plain;h=1b8fe6f6e621b0dbaba3a2eae541ea11ac63364b;p=lemmy-ui.git Fixing max image size. --- diff --git a/src/shared/components/pictrs-image.tsx b/src/shared/components/pictrs-image.tsx index 87283b5..b044721 100644 --- a/src/shared/components/pictrs-image.tsx +++ b/src/shared/components/pictrs-image.tsx @@ -2,7 +2,7 @@ import { Component } from 'inferno'; const iconThumbnailSize = 96; const thumbnailSize = 256; -const maxImageSize = 1000; +const maxImageSize = 3000; interface PictrsImageProps { src: string;