* 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
18 lines
268 B
JavaScript
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;
|