diff --git a/frontend/src/models/attachment.ts b/frontend/src/models/attachment.ts index 964b83f18..2e697f4ea 100644 --- a/frontend/src/models/attachment.ts +++ b/frontend/src/models/attachment.ts @@ -5,7 +5,7 @@ import type { IUser } from '@/modelTypes/IUser' import type { IFile } from '@/modelTypes/IFile' import type { IAttachment } from '@/modelTypes/IAttachment' -export const SUPPORTED_IMAGE_SUFFIX = ['.jpg', '.png', '.bmp', '.gif'] +export const SUPPORTED_IMAGE_SUFFIX = ['.jpeg', '.jpg', '.png', '.bmp', '.gif'] export function canPreview(attachment: IAttachment): boolean { return SUPPORTED_IMAGE_SUFFIX.some((suffix) => attachment.file.name.toLowerCase().endsWith(suffix)) @@ -26,4 +26,4 @@ export default class AttachmentModel extends AbstractModel implemen this.file = new FileModel(this.file) this.created = new Date(this.created) } -} +} \ No newline at end of file