1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

changed comment image preview size

This commit is contained in:
Fedor Katurov 2020-06-24 16:38:49 +07:00
parent 0d5e035c7f
commit 95fbeaabbb

View file

@ -74,7 +74,7 @@ const CommentContent: FC<IProps> = memo(
<div className={styles.images}>
{groupped.image.map((file, index) => (
<div key={file.id} onClick={() => modalShowPhotoswipe(groupped.image, index)}>
<img src={getURL(file, PRESETS['300'])} alt={file.name} />
<img src={getURL(file, PRESETS['600'])} alt={file.name} />
</div>
))}
</div>