Fixed js warning in error modal

This commit is contained in:
VakarisZ 2020-09-23 15:06:27 +03:00
parent 12e7c40db9
commit 1559504691
1 changed files with 6 additions and 6 deletions

View File

@ -26,29 +26,29 @@ class IslandMonkeyRunErrorModal extends React.PureComponent {
getMissingBinariesContent() { getMissingBinariesContent() {
return ( return (
<div> <span>
Some Monkey binaries are not found where they should be...<br/> Some Monkey binaries are not found where they should be...<br/>
You can download the files from <a href="https://github.com/guardicore/monkey/releases/latest" You can download the files from <a href="https://github.com/guardicore/monkey/releases/latest"
target="blank">here</a>, target="blank">here</a>,
at the bottommost section titled "Assets", and place them under the at the bottommost section titled "Assets", and place them under the
directory <code>monkey/monkey_island/cc/binaries</code>. directory <code>monkey/monkey_island/cc/binaries</code>.
</div> </span>
) )
} }
getMonkeyAlreadyRunningContent() { getMonkeyAlreadyRunningContent() {
return ( return (
<div> <span>
Most likely, monkey is already running on the Island. Wait until it finishes or kill the process to run again. Most likely, monkey is already running on the Island. Wait until it finishes or kill the process to run again.
</div> </span>
) )
} }
getUndefinedErrorContent() { getUndefinedErrorContent() {
return ( return (
<div> <span>
You encountered an undefined error. Please report it to support@infectionmonkey.com or our slack channel. You encountered an undefined error. Please report it to support@infectionmonkey.com or our slack channel.
</div> </span>
) )
} }