From 2b55258e2ebad579dcd9d645107b2979b38ccf3a Mon Sep 17 00:00:00 2001 From: Itay Mizeretz Date: Tue, 31 Oct 2017 17:09:28 +0200 Subject: [PATCH] Add current page changes to exported config --- monkey_island/cc/ui/src/components/pages/ConfigurePage.js | 1 + 1 file changed, 1 insertion(+) diff --git a/monkey_island/cc/ui/src/components/pages/ConfigurePage.js b/monkey_island/cc/ui/src/components/pages/ConfigurePage.js index 53f4d2778..3f60ab026 100644 --- a/monkey_island/cc/ui/src/components/pages/ConfigurePage.js +++ b/monkey_island/cc/ui/src/components/pages/ConfigurePage.js @@ -114,6 +114,7 @@ class ConfigurePageComponent extends React.Component { }; exportConfig = () => { + this.updateConfigSection(); fileDownload(JSON.stringify(this.state.configuration, null, 2), 'monkey.conf'); };