From 2f40fc4e54390804d8f20ef9178601d245c0f089 Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Mon, 26 Jul 2021 14:22:53 +0300 Subject: [PATCH] Island UI: improved the UI/readability in BreachSection.tsx --- .../report-components/ransomware/BreachSection.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/BreachSection.tsx b/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/BreachSection.tsx index 5e217bb08..1c2b71d99 100644 --- a/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/BreachSection.tsx +++ b/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/BreachSection.tsx @@ -7,7 +7,7 @@ import {renderLimitedArray} from '../common/RenderArrays'; function BreachSection() { const [machines, setMachines] = useState(null); let description = 'Ransomware attacks start after machines in the internal network get compromised. ' + - 'The initial compromise was simulated by running monkeys manually.'; + 'The initial compromise was simulated by running Monkey Agents manually.'; useEffect(() => { IslandHttpClient.get('/api/exploitations/manual') @@ -40,8 +40,8 @@ function getBreachSectionBody(machines) { function getMachine(machine) { return (
  • - {machine['hostname']} - ({renderLimitedArray(machine['ip_addresses'], 2, 'ip-address')}) at {machine['start_time']} + {machine['hostname']}  + ({renderLimitedArray(machine['ip_addresses'], 2, 'ip-address')}) at {machine['start_time']}
  • ) }