diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-08-12 23:44:22 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-08-12 23:44:39 -0300 |
commit | 82036040f70ab9d5b30afe372bcd43061acff5d8 (patch) | |
tree | ff7263b63687a1b4e42555b6ace18ca5fc4e43b7 /src/util | |
parent | 38ee553fa9e4e1aebccb845ef28e6abc7a32c86e (diff) |
content: transformContent: display large thumbs by default
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/urls.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/urls.js b/src/util/urls.js index 4d099acd..bd3a349a 100644 --- a/src/util/urls.js +++ b/src/util/urls.js @@ -142,6 +142,7 @@ const thumbnailHelper = (name) => (file) => file.replace(/\.(jpg|png)$/, name + '.jpg'); export const thumb = { + large: thumbnailHelper('.large'), medium: thumbnailHelper('.medium'), small: thumbnailHelper('.small'), }; |