forked from p15670423/monkey
Merge branch 'develop' into 393/python-3
This commit is contained in:
commit
38c45ccc72
|
@ -75,7 +75,6 @@
|
|||
"fetch": "^1.1.0",
|
||||
"file-saver": "^2.0.2",
|
||||
"filepond": "^4.7.3",
|
||||
"js-file-download": "^0.4.8",
|
||||
"json-loader": "^0.5.7",
|
||||
"jwt-decode": "^2.2.0",
|
||||
"moment": "^2.24.0",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
import Form from 'react-jsonschema-form';
|
||||
import {Col, Modal, Nav, NavItem} from 'react-bootstrap';
|
||||
import fileDownload from 'js-file-download';
|
||||
import FileSaver from 'file-saver';
|
||||
import AuthComponent from '../AuthComponent';
|
||||
import { FilePond } from 'react-filepond';
|
||||
import 'filepond/dist/filepond.min.css';
|
||||
|
@ -309,7 +309,10 @@ class ConfigurePageComponent extends AuthComponent {
|
|||
|
||||
exportConfig = () => {
|
||||
this.updateConfigSection();
|
||||
fileDownload(JSON.stringify(this.state.configuration, null, 2), 'monkey.conf');
|
||||
const configAsJson = JSON.stringify(this.state.configuration, null, 2);
|
||||
const configAsBinary = new Blob([configAsJson], {type: "text/plain;charset=utf-8"});
|
||||
|
||||
FileSaver.saveAs(configAsBinary, 'monkey.conf');
|
||||
};
|
||||
|
||||
sendConfig() {
|
||||
|
|
Loading…
Reference in New Issue