From 1559504691745d7326b8b5e47c656bda0eb95232 Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Wed, 23 Sep 2020 15:06:27 +0300 Subject: [PATCH] Fixed js warning in error modal --- .../ui-components/IslandMonkeyRunErrorModal.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/monkey/monkey_island/cc/ui/src/components/ui-components/IslandMonkeyRunErrorModal.js b/monkey/monkey_island/cc/ui/src/components/ui-components/IslandMonkeyRunErrorModal.js index 8b2a8857d..67e7ee77d 100644 --- a/monkey/monkey_island/cc/ui/src/components/ui-components/IslandMonkeyRunErrorModal.js +++ b/monkey/monkey_island/cc/ui/src/components/ui-components/IslandMonkeyRunErrorModal.js @@ -26,29 +26,29 @@ class IslandMonkeyRunErrorModal extends React.PureComponent { getMissingBinariesContent() { return ( -
+ Some Monkey binaries are not found where they should be...
You can download the files from here, at the bottommost section titled "Assets", and place them under the directory monkey/monkey_island/cc/binaries. -
+ ) } getMonkeyAlreadyRunningContent() { return ( -
+ Most likely, monkey is already running on the Island. Wait until it finishes or kill the process to run again. -
+ ) } getUndefinedErrorContent() { return ( -
+ You encountered an undefined error. Please report it to support@infectionmonkey.com or our slack channel. -
+ ) }