Minor fix.

This commit is contained in:
Paulo Gustavo Veiga 2021-02-09 18:35:57 -08:00
parent 5145058651
commit 1c7dbb8af5

View File

@ -6,7 +6,7 @@ import { FormControl, FormControlLabel, MenuItem, Radio, RadioGroup, Select } fr
import { useStyles } from './style'; import { useStyles } from './style';
import { Alert } from "@material-ui/lab"; import { Alert } from "@material-ui/lab";
type ExportFormat = 'pdf' | 'svg' | 'jpeg' | 'png' | 'txt' | 'mm' | 'wxml' | 'xls' | 'txt'; type ExportFormat = 'pdf' | 'svg' | 'jpg' | 'png' | 'txt' | 'mm' | 'wxml' | 'xls' | 'txt';
type ExportGroup = 'image' | 'document' | 'mindmap-tool'; type ExportGroup = 'image' | 'document' | 'mindmap-tool';
type ExportDialogProps = { type ExportDialogProps = {
@ -61,7 +61,7 @@ const ExportDialog = (props: ExportDialogProps) => {
useEffect(() => { useEffect(() => {
if (submit) { if (submit) {
// Depending on the type of export. It will require differt POST. // Depending on the type of export. It will require differt POST.
if (exportFormat == 'pdf' || exportFormat == "svg" || exportFormat == "jpeg" || exportFormat == "png") { if (exportFormat == 'pdf' || exportFormat == "svg" || exportFormat == "jpg" || exportFormat == "png") {
formTransformtRef.submit(); formTransformtRef.submit();
} else { } else {
@ -105,7 +105,7 @@ const ExportDialog = (props: ExportDialogProps) => {
<MenuItem value="svg" className={classes.menu}>Scalable Vector Graphics (SVG)</MenuItem> <MenuItem value="svg" className={classes.menu}>Scalable Vector Graphics (SVG)</MenuItem>
<MenuItem value="pdf" className={classes.select} >Portable Document Format (PDF)</MenuItem> <MenuItem value="pdf" className={classes.select} >Portable Document Format (PDF)</MenuItem>
<MenuItem value="png" className={classes.menu}>Portable Network Graphics (PNG)</MenuItem> <MenuItem value="png" className={classes.menu}>Portable Network Graphics (PNG)</MenuItem>
<MenuItem value="jpeg" className={classes.menu}>JPEG Image (JPEG)</MenuItem> <MenuItem value="jpg" className={classes.menu}>JPEG Image (JPEG)</MenuItem>
</Select>) </Select>)
} }
</FormControl> </FormControl>