Files
frontend-app-ora-grading/src/data/constants/files.js
leangseu-edx 46ebc899ee tri-fix (#49)
* fix: response display to show medium size on even the content isn't big enough

* fix: don't show download button when there isn't submission files

* feat: additional default support file for image renderer
2022-01-24 14:30:07 -05:00

18 lines
268 B
JavaScript

import { StrictDict } from 'utils';
export const FileTypes = StrictDict({
pdf: 'pdf',
jpg: 'jpg',
jpeg: 'jpeg',
png: 'png',
bmp: 'bmp',
txt: 'txt',
gif: 'gif',
jfif: 'jfif',
pjpeg: 'pjpeg',
pjp: 'pjp',
svg: 'svg',
});
export default FileTypes;