From 77754cb4ff111231734225d4d119ceba9e611182 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Tue, 13 Jul 2021 11:23:48 -0400 Subject: [PATCH] Island: Remove superfluous description from ransomware report --- .../report-components/RansomwareReport.js | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/monkey/monkey_island/cc/ui/src/components/report-components/RansomwareReport.js b/monkey/monkey_island/cc/ui/src/components/report-components/RansomwareReport.js index adda1f2e0..688d3cc67 100644 --- a/monkey/monkey_island/cc/ui/src/components/report-components/RansomwareReport.js +++ b/monkey/monkey_island/cc/ui/src/components/report-components/RansomwareReport.js @@ -24,18 +24,13 @@ class RansomwareReport extends React.Component { getExploitationStats() { return ( - <> -

- This report shows information about the ransomware simulation run by Infection Monkey. -

-
-

- Propagation -

- {this.getScannedVsExploitedStats()} - {this.getExploitationStatsPerExploit()} -
- +
+

+ Propagation +

+ {this.getScannedVsExploitedStats()} + {this.getExploitationStatsPerExploit()} +
) }