mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
Change png size to be based on browser
This commit is contained in:
parent
e4d43013d1
commit
6ecfa0139b
@ -17,7 +17,6 @@ import { activeInstance } from '../../../../redux/clientSlice';
|
||||
import { useSelector } from 'react-redux';
|
||||
import SizeType from '@wisemapping/mindplot/src/components/SizeType';
|
||||
import Checkbox from '@mui/material/Checkbox';
|
||||
import FormGroup from '@mui/material/FormGroup';
|
||||
|
||||
type ExportFormat = 'svg' | 'jpg' | 'png' | 'txt' | 'mm' | 'wxml' | 'xls' | 'md';
|
||||
type ExportGroup = 'image' | 'document' | 'mindmap-tool';
|
||||
@ -95,7 +94,7 @@ const ExportDialog = ({
|
||||
// Depending on the type of export. It will require differt POST.
|
||||
const workspace = designer.getWorkSpace();
|
||||
svgElement = workspace.getSVGElement();
|
||||
size = workspace.getSize();
|
||||
size = { width: window.innerWidth, height: window.innerHeight };
|
||||
mindmap = designer.getMindmap();
|
||||
} else {
|
||||
mindmap = client.fetchMindmap(mapId);
|
||||
|
Loading…
Reference in New Issue
Block a user